gpt4 book ai didi

android - Android Studio “Error while Running application”编译已过时

转载 作者:行者123 更新时间:2023-12-03 05:42:12 25 4
gpt4 key购买 nike

当我更新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'

最佳答案

使用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'

关于android - Android Studio “Error while Running application”编译已过时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52183215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com