在尝试将Google Firebase连接到我的Android Studio项目时,每次尝试同步项目时,我都会不断收到"ERROR: failed to resolve: com.google.firebase:firebase-core:16.1.0"
。
我见过多个有类似问题的人,但他们的解决方案似乎都不适合我。 (尽管它们似乎为他们工作)
Android Studio说问题出在我的build.gradle(模块:app)文件中。在下面:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.firebase:firebase-core:16.1.0'
implementation 'com.google.android.gms:play-services-maps:16.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
apply plugin: 'com.google.gms.google-services'
非常感谢您的时间和协助。
答案 0 :(得分:2)
firebase-core的最新版本是16.0.8
尝试:
implementation 'com.google.firebase:firebase-core:16.0.8'
这是所有Firebase依赖项的链接: Firebase
一直向下滚动,您会发现最新的消息。