我正在使用Android Studio 3.1.3,并尝试构建连接到Firebase的Android应用。
build.gradle
文件中出现以下错误。
我的build.gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.asu.fit.firebaseapp"
minSdkVersion 19
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'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.google.firebase:firebase-core:16.0.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 :(得分:0)
该错误明确表明您使用的支持库版本不同,这可能会导致运行时崩溃。在这种情况下,您可以考虑执行以下操作。
targetSdkVersion
降低到 26 并将支持库版本的导入更改为implementation 'com.android.support:appcompat-v7:26.1.0'
。然后尝试使用gradle重新同步。 或者您可以使用resolutionStrategy
来强制在构建应用程序时使用库版本,如下所示。在您的build.gradle
文件中添加以下细分。
configurations.all {
resolutionStrategy {
force 'com.android.support:design:27.1.1'
force 'com.android.support:support-v4:27.1.1'
force 'com.android.support:appcompat-v7:27.1.1'
}
}
希望有帮助!
答案 1 :(得分:0)
只需添加此行
implementation 'com.android.support:design:27.1.1'
在那之后,我希望我会很好。