Android Studio“运行应用程序时出错”已过时编译

时间:2018-09-05 10:44:28

标签: android android-studio gradle

当我更新android studio并导入该项目时,我有旧的android studio项目,它给了我这个错误,我更新了gradle文件,但它总是给我这个错误。

配置'compile'已过时,并已由'implementation'和'api'取代[重复]

我已经将所有编译全部更改为实现,但是它总是给我这个错误。请帮助我解决此问题。 这是代码...。

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
    applicationId "com.ask4task.easygroc"
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    multiDexEnabled true

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.1'
implementation 'com.android.support:recyclerview-v7:26.1.1'
implementation 'com.android.support:design:26.1.1'
implementation 'com.squareup.retrofit:retrofit:1.9.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.google.firebase:firebase-ads:9.6.0'
implementation 'com.google.firebase:firebase-analytics:9.6.0'
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-messaging:10.2.1'
implementation 'com.android.support:cardview-v7:26.3.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.github.f0ris.sweetalert:library:1.5.1'
implementation 'me.henrytao:smooth-app-bar-layout:24.1.0.0'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'com.xiaofeng.android:flowlayoutmanager:1.2.3.2'
implementation 'com.android.support:multidex:1.0.1'
//compile 'com.razorpay:checkout:1.2.0'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    def requested = details.requested
    if (requested.group == 'com.android.support') {
        if (!requested.name.startsWith("multidex")) {
            details.useVersion '25.3.0'
        }
    }
}
 }
apply plugin: 'com.google.gms.google-services'

1 个答案:

答案 0 :(得分:0)

使用Android Gradle插件将Gradle版本更新为4.4至3.1.4

gradle-wrapper.properties

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

build.gradle(顶级)

classpath 'com.android.tools.build:gradle:3.1.4'