summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrettyWhite <geekman3454@protonmail.com>2018-10-03 09:42:18 -0400
committerBrettyWhite <geekman3454@protonmail.com>2018-10-03 09:42:18 -0400
commit9dbe3b7cae40102448e98a316a32c3bd79820cf5 (patch)
tree66edf67eee0fbba31722f818d286b6ab3493551f
parent0c663138c7edf70932bd759823f8c22494452c9e (diff)
downloadsdl_android-9dbe3b7cae40102448e98a316a32c3bd79820cf5.tar.gz
clarify flavor names in gradle per comment
-rwxr-xr-xhello_sdl_android/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/hello_sdl_android/build.gradle b/hello_sdl_android/build.gradle
index a23756b8c..f75af0ec0 100755
--- a/hello_sdl_android/build.gradle
+++ b/hello_sdl_android/build.gradle
@@ -18,19 +18,19 @@ android {
}
flavorDimensions "default"
productFlavors{
- multi_high {
+ multi_sec_high {
buildConfigField 'String', 'TRANSPORT', '"MULTI"'
buildConfigField 'String', 'SECURITY', '"HIGH"'
}
- multi_med {
+ multi_sec_med {
buildConfigField 'String', 'TRANSPORT', '"MULTI"'
buildConfigField 'String', 'SECURITY', '"MED"'
}
- multi_low {
+ multi_sec_low {
buildConfigField 'String', 'TRANSPORT', '"MULTI"'
buildConfigField 'String', 'SECURITY', '"LOW"'
}
- multi_off {
+ multi_sec_off {
buildConfigField 'String', 'TRANSPORT', '"MULTI"'
buildConfigField 'String', 'SECURITY', '"OFF"'
}