gpt4 book ai didi

android - 当我运行我的旧 android 项目时,我从 build.gradle 收到一条错误消息

转载 作者:行者123 更新时间:2023-11-29 02:19:55 24 4
gpt4 key购买 nike

当我运行我的旧 android 项目时,我收到一条错误消息:

“警告:配置‘compile’已过时,已被‘implementation’和‘api’取代。它将在 2018 年底删除。有关更多信息,请参阅:http://d.android.com/r/tools/update-dependency-configurations.html受影响的模块:app"

我尝试在所有项目中使用 google(),但收到相同的错误消息。

apply plugin: 'com.android.application'

android {
compileSdkVersion 27

defaultConfig {
applicationId "com.example.android.firebaseupload"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}

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 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:appcompat-v7:27.0.+'
implementation 'com.google.firebase:firebase-storage:17.0.0'
implementation 'com.google.firebase:firebase-auth:17.0.0'
implementation 'com.google.firebase:firebase-database:17.0.0'
implementation 'com.github.gcacace:signature-pad:1.2.1'
implementation 'com.squareup.picasso:picasso:2.5.0'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.android.support:recyclerview-v7:27.0.0'
implementation 'com.android.support:cardview-v7:27.0.0'
implementation 'com.firebaseui:firebase-ui-database:0.4.0'
implementation 'com.android.support:design:27.0.0'
implementation 'com.android.support:support-v4:27.0.0'
implementation 'com.google.android.gms:play-services-plus:17.0.0'
testImplementation 'junit:junit:4.12'
}





}

应用插件:'com.google.gms.google-services'

“警告:配置‘compile’已过时,已被‘implementation’和‘api’取代。它将在 2018 年底删除。有关更多信息,请参阅:http://d.android.com/r/tools/update-dependency-configurations.html受影响的模块:app"

最佳答案

看起来问题出在:

implementation 'com.github.gcacace:signature-pad:1.2.1'

查看此链接

[ https://github.com/gcacace/android-signaturepad/blob/master/SignaturePad-Example/build.gradle][1]

看起来开发人员已经有一段时间没有更新他的代码了,所以您的解决方案是:

1- 下载 https://github.com/gcacace/android-signaturepad作为 zip

2- 在应用模块中打开它的 Gradle 文件并用实现替换编译

3- 确保不再有 Compile 关键字后,转到 Android studio 中的 Android 项目 点击文件->新建->导入模块->选择您提取项目并编辑它的文件夹,就这样

  • 确保您所有的依赖项都使用最新版本

关于android - 当我运行我的旧 android 项目时,我从 build.gradle 收到一条错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56913844/

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