1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2025-09-09 10:19:42 +02:00

Top toolbar with overflow icons and light/dark theme

This commit is contained in:
Gregor Santner 2017-10-29 14:47:00 +01:00
parent aaa2445bef
commit a96e91aefb
No known key found for this signature in database
GPG key ID: 7E83A7834AECB009
14 changed files with 108 additions and 119 deletions

View file

@ -6,9 +6,9 @@ ext {
minSdk : 17,
]
version_lib = [
appcompat: "27.0.0",
appcompat : "27.0.0",
butterknife: "8.8.1",
netcipher: "2.0.0-alpha1",
netcipher : "2.0.0-alpha1",
]
}
@ -22,9 +22,7 @@ android {
targetSdkVersion version_sdk.compileSdk
buildConfigField "boolean", "IS_TEST_BUILD", "false"
buildConfigField "boolean", "IS_GPLAY_BUILD", "false"
buildConfigField("String[]", "APPLICATION_LANGUAGES", '{' + getUsedAndroidLanguages().collect {
"\"${it}\""
}.join(",") + '}')
buildConfigField("String[]", "APPLICATION_LANGUAGES", '{' + getUsedAndroidLanguages().collect {"\"${it}\""}.join(",") + '}')
buildConfigField "String", "GITHASH", "\"${getGitHash()}\""
applicationId "com.github.dfa.diaspora_android"
@ -52,7 +50,9 @@ android {
productFlavors {
flavorDefault {
}
/*flavorGplay {
/*
flavorGplay {
buildConfigField "boolean", "IS_GPLAY_BUILD", "true"
}*/
flavorTest {