警告:配置 'compile' 已过时,已替换为 'implementation' 和 'api'



在myapp/build.gradle中,我不使用编译配置,但保持对这个警告的绝望

配置"编译"已过时,已替换为 "实现"和"API"。

这是我们我的应用程序/构建.gradle

apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "org.apoce.app"
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
defaultConfig{
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.loopj.android:android-async-http:1.4.9'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.github.satyan:sugar:1.4'
implementation 'com.jude:swipebackhelper:3.1.2'
implementation 'ch.acra:acra:4.9.0'
implementation 'com.google.firebase:firebase-messaging:9.6.1'
testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

我只是将谷歌服务更新到最新版本并解决问题

最新更新