aboutsummaryrefslogtreecommitdiff
path: root/tests/flavored/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'tests/flavored/build.gradle')
-rw-r--r--tests/flavored/build.gradle7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/flavored/build.gradle b/tests/flavored/build.gradle
index 41e50d9..d08c3fe 100644
--- a/tests/flavored/build.gradle
+++ b/tests/flavored/build.gradle
@@ -15,28 +15,23 @@ android {
testBuildType = "staging"
defaultConfig {
- buildConfig "private final static boolean DEFAULT = true;", \
- "private final static String FOO = \"foo\";"
}
productFlavors {
f1 {
packageName = "com.android.tests.flavored.f1"
versionName = "1.0.0-f1"
- buildConfig "public final static String FLAVOR = \"f1\";"
}
f2 {
packageName = "com.android.tests.flavored.f2"
versionName = "1.0.0-f2"
- buildConfig "public final static String FLAVOR = \"f2\";"
}
}
-
+
buildTypes {
debug {
packageNameSuffix = ".debug"
versionNameSuffix = ".D"
- buildConfig "private final static boolean DEBUG2 = false;"
}
staging {
packageNameSuffix = ".staging"