我有旧的android工作室项目,当我更新Android工作室并导入该项目它给我这个错误我已更新gradle文件但它总是给我这个错误。
配置'compile'已过时,已替换为'implementation'和'api'[duplicate]
我已将所有编译更改为实现,但它总是给我这个错误。请帮我解决这个问题。这是代码....
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'
使用Android Gradle Plugin将Gradle版本更新为4.4到3.1.4
grad了-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'