突然出現(xiàn)執(zhí)行任務(wù)動(dòng)作問(wèn)題。我嘗試了那里和其他頁(yè)面的解決方案,但沒(méi)有幫助,因?yàn)樗鼈兪桥f版本的 Android Studio。我的build.gradleapply plugin: 'com.android.application'android { compileSdkVersion 28 defaultConfig { applicationId "com.example.asus.thesister" minSdkVersion 15 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } }dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:support-v4:28.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation 'com.android.support:design:28.0.0' implementation 'org.jetbrains:annotations-java5:15.0' implementation 'com.android.support:recyclerview-v7:28.0.0' implementation 'com.google.android.gms:play-services-ads:18.1.0' implementation 'com.android.support:cardview-v7:28.0.0'}錯(cuò)誤::app:processDebugManifest 錯(cuò)誤
1 回答

斯蒂芬大帝
TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊
ExecuteTaskAction :app:processDebugManifest 錯(cuò)誤 Android Studio
該問(wèn)題似乎與 AndroidX 庫(kù)有關(guān)。這是因?yàn)槟谑褂镁哂幸韵乱蕾図?xiàng)的 AndroidX 的 Google Play 服務(wù):
implementation 'com.google.android.gms:play-services-ads:18.1.0'
Google Play 服務(wù)從版本 17 開始,使用的是 AndroidX。請(qǐng)參閱https://developers.google.com/android/guides/releases#june_17_2019
您需要將您的 Google Play 服務(wù)降級(jí)到版本 16(強(qiáng)烈建議不要這樣做)或遷移您的項(xiàng)目以使用 AndroidX(請(qǐng)參閱遷移到 AndroidX)
添加回答
舉報(bào)
0/150
提交
取消