これは私のbuild.gradleです
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
buildscript {
}
repositories {
android {
signingConfigs {
release_config {
}
}
compileSdkVersion 22
buildToolsVersion '22'
defaultConfig {
applicationId "in.workindia.xxxxxxxxxxandroid"
minSdkVersion 15
targetSdkVersion 22
versionCode 35
versionName "3.3.0"
signingConfig signingConfigs.release_config
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
/*While app is in debug mode disable crashlytics*/
debug {
versionNameSuffix "-DEBUG"
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildTypes.debug {
it.buildConfigField 'String', 'BASE_URLS', DEBUG_URLS
it.buildConfigField 'String', 'CLIENT_ID', SERVER_DEBUG_CLIENT_ID
}
buildTypes.release {
it.buildConfigField 'String', 'BASE_URLS', BASE_URLS
it.buildConfigField 'String', 'CLIENT_ID', SERVER_RELEASE_CLIENT_ID
}
}
afterEvaluate {
processDebugGoogleServices.dependsOn switchToDebug
processReleaseGoogleServices.dependsOn switchToRelease
}
task switchToDebug(type: Copy) {
description = 'Switches to DEBUG google-services.json'
from "src/debug_work"
include "google-services.json"
into "."
}
task switchToRelease(type: Copy) {
description = 'Switches to RELEASE google-services.json'
from "src/release_work"
include "google-services.json"
into "."
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
dependencies {
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
}
compile 'com.google.android.gms:play-services-gcm:8.3.0'
compile 'com.google.android.gms:play-services-analytics:8.3.0'
compile 'com.google.android.gms:play-services-location:8.3.0'
}
これらの 3 つが実行されないのはなぜですか?
afterEvaluate
switchToDebug
switchToRelease
何が間違っていますか?