IT 显示“无法解析 Android 应用程序模块的 Gradle 配置。解决 gradle 构建问题和/或重新同步。'
下面是我的 build.gradle 模块。
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.mchat"
minSdkVersion 27
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'com.intuit.sdp:sdp-android:1.0.6'
}
答案 0 :(得分:0)
确保 Android Studio 已更新并且您使用的是 Gradle 4.1 或更高版本。
另外,我在您的依赖项中看不到 google 服务:
com.google.gms.google-services
我建议仔细检查文档中的步骤,以确保您正确实施了 firebase。 https://firebase.google.com/docs/android/setup#add-config-file
在某些情况下,您的缓存构建可能已损坏,因此可能需要删除 .gradle/caches
目录。它保存 Gradle 构建缓存,如果您有关于构建缓存的错误,您可以安全地将其删除以进行干净的构建。
另外,--no-build-cache 选项将在没有构建缓存的情况下运行 Gradle。
答案 1 :(得分:0)
转到“工具”/“Firebase”,然后选择您想要的 Firebase 内容,然后单击“连接到 Firebase”,它将连接发送到 google 以使用您的 Firebase 帐户登录,然后选择项目,它会自动连接它,然后再次返回到 android studio 并执行下一步添加依赖项