在 Gradle 文件中添加 Firebse 远程配置 SDK 时出现以下错误
compile 'com.google.firebase:firebase-config:9.2.1'
它将显示错误 Error:(25, 13) Failed to resolve: com.google.firebase:firebase-config:9.2.1 Show in File
Show in Project Structure 对话框
摇篮文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.bazingalabs.firebaseremoteconfig"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.google.firebase:firebase-config:9.2.1'
}
apply plugin: 'com.google.gms.google-services'