奇数错误配置'compile'已过时,并已由'implementation'和'api'代替

时间:2018-10-30 13:57:16

标签: android

奇数错误配置'compile'已过时,并已由'implementation'和'api'代替

配置'compile'已过时,并已由'implementation'和'api'代替。 它将于2018年底删除。有关更多信息,请参阅:http://d.android.com/r/tools/update-dependency-configurations.html

当我将所有的“编译”转换为“实现”时

apply plugin: 'com.android.application'
apply plugin: 'realm-android'

android {
    compileSdkVersion 27
    buildToolsVersion "28.0.2"
    defaultConfig {
        applicationId "yts.mnf.torrent"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 12
        versionName "1.5"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation files('libs/gson-2.8.0.jar')
 //   implementation files('libs/StartAppInApp-3.5.7.jar')
    // Mandatory
    // Mandatory

    implementation 'com.tapadoo.android:alerter:3.0.0'
    implementation 'com.github.coyarzun89:fabtransitionactivity:0.2.0'
    implementation 'com.github.clans:fab:1.6.4'
    implementation 'com.google.android.gms:play-services-basement:15.0.1'
    implementation 'com.google.android.gms:play-services-location:15.0.1'
    implementation 'com.google.firebase:firebase-messaging:17.3.0'
    implementation 'com.google.firebase:firebase-core:16.0.3'
    implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
    implementation 'com.github.dimorinny:floating-text-button:0.0.4'
    implementation 'com.ogaclejapan.smarttablayout:library:1.6.1@aar'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.github.developer-shivam:crescento:1.2.1'
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.jakewharton:butterknife:8.8.1'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.robertlevonyan.view:MaterialChipView:1.2.4'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.android.support:palette-v7:27.1.1'
    implementation 'com.github.Cutta:TagView:1.3'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation 'com.github.castorflex.smoothprogressbar:library-circular:1.3.0'
    implementation 'com.ruslankishai:unmaterialtabs:0.1a'
    implementation 'com.android.support:support-vector-drawable:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    testImplementation 'junit:junit:4.12'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}
apply plugin: 'com.google.gms.google-services'

2 个答案:

答案 0 :(得分:1)

这意味着您的至少一个库当前在compile中使用build.gradle语法。除了对relevent项目(如果存在)提出问题之外,您无能为力。如果您使用的是废弃的项目,则需要将它们分叉并实现自己的版本(Jitpack是一项服务,可让您在Github上实现任何Gradle项目)。

另外,对于Gson,您可以并且应该使用正常的实现方式:

implementation 'com.google.code.gson:gson:2.8.5'

不需要JAR。


以下是您使用compile的库的列表:

  • com.github.coyarzun89:fabtransitionactivity
  • com.github.clans:fab
  • com.ogaclejapan.smarttablayout:library
  • com.github.developer-shivam:crescento
  • com.robertlevonyan.view:MaterialChipView
  • com.github.Cutta:TagView
  • com.ruslankishai:unmaterialtabs(已完全弃用该标签)

您的许多其他依赖项也已经过时了。如果依赖项以黄色突出显示,请单击它,然后按 Alt + Enter 并选择建议的修复程序以更新依赖项版本。

这对于任何Firebase或Google实施尤其重要!

答案 1 :(得分:1)

您只需要在应用程序级别的build.gradle中更新领域的类路径 到here可用的最新领域版本,您的警告就会得到解决