这是我的gradle文件,我尝试使用com.android.support.customtabs:27.1.1强制它使用相同的版本,但问题仍然存在。 请帮助,我是Android Studio的新手
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "com.example.spars.myapplication"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile 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:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.razorpay:checkout:1.4.5'
implementation 'com.google.firebase:firebase-database:16.0.2'
implementation 'com.firebaseui:firebase-ui:2.3.0'
testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
我收到以下错误: 错误:无法解决:com.google.firebase:firebase-core:16.0.2 在项目结构对话框中显示 受影响的模块:应用
警告:配置'compile'已过时,并已由'implementation'和'api'代替。 它将于2018年底删除。有关更多信息,请参阅:http://d.android.com/r/tools/update-dependency-configurations.html 受影响的模块:应用
警告:指定的Android SDK Build Tools版本(27.0.3)被忽略,因为它低于Android Gradle Plugin 3.3.1的最低支持版本(28.0.3)。 将使用Android SDK Build Tools 28.0.3。 要取消显示此警告,请从build.gradle文件中删除“ buildToolsVersion '27 .0.3'”,因为每个版本的Android Gradle插件现在都具有默认版本的构建工具。 删除构建工具版本并同步项目 受影响的模块:应用
答案 0 :(得分:1)
如果您正在使用任何Google服务,那么根据文档,您需要添加基于Fire的依赖项:
您的应用gradle文件现在必须明确列出 com.google.firebase:firebase-core作为Firebase的依赖项 服务正常工作。
Status.PASS_WON
更多详细信息here。
关于 compile 关键字警告,该警告已过时。因此,根据我在gradle文件中看到的内容,在 fileTree 行中,将 compile 替换为实施:
implementation 'com.google.firebase:firebase-core:16.0.2'
最后,对于 Android SDK生成工具警告,删除 buildToolsVersion“ 27.0.3” 行,这不再是必需的。从现在开始,gradle将解决并使用正确的构建工具。
最后一点,请考虑到现在已弃用 com.android.support 库,您应迁移到AndroidX。