当我尝试运行我的应用程序时,我得到这些错误:
Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForDebug'.
Run Code Online (Sandbox Code Playgroud)
java.io.IOException:请先纠正上面的警告.
This is my Gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "xxxxxxxxxxxxx"
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
shrinkResources true
}
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.google.android.gms:play-services:9.8.00'
compile 'com.google.android.gms:play-services-auth:9.8.00'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
compile 'com.google.android.gms:play-services-ads:9.8.00' …Run Code Online (Sandbox Code Playgroud) 我有两个google-services.json用于Google登录的文件,另一个用于Firebase存储,我如何将两个文件放在同一个项目中.请帮我解决这个问题.我已经在我的应用中集成了Google登录,现在我下载了JSON文件进行存储,但无法将其放在同一个项目中.