Added Biochecker, refs #10923
@@ -160,6 +160,19 @@ android {
|
||||
buildConfigField "String", "appTitle", "\"dinect (develop)\""
|
||||
buildConfigField "boolean", "showBonus", "true"
|
||||
}
|
||||
|
||||
biohacker {
|
||||
applicationId 'ru.fivefit.biochecker'
|
||||
buildConfigField "String", "locale", "\"ru\""
|
||||
buildConfigField "String", "flavor", "\"biohacker\""
|
||||
buildConfigField "int", "currency", "643"
|
||||
buildConfigField "String", "supportPhone", "\"support@dinect.com\""
|
||||
buildConfigField "String", "supportUrl", "\"http://www.dinect.com\""
|
||||
buildConfigField "String", "endpoint", "\"https://pos-api.dinect.com/20130701/\""
|
||||
buildConfigField "String", "appToken", "\"bdea0f3ba9034b688019a7cac753d1209e2b227f\""
|
||||
buildConfigField "String", "appTitle", "\"BioChecker\""
|
||||
buildConfigField "boolean", "showBonus", "true"
|
||||
}
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
||||
BIN
android/app/src/biohacker/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
android/app/src/biohacker/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
android/app/src/biohacker/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
android/app/src/biohacker/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
android/app/src/biohacker/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
3
android/app/src/biohacker/res/values/strings.xml
Normal file
@@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">BioChecker</string>
|
||||
</resources>
|
||||
BIN
android/app/src/biohacker/web_hi_res_512.png
Normal file
|
After Width: | Height: | Size: 117 KiB |
BIN
assets/biohacker_logo.png
Normal file
|
After Width: | Height: | Size: 157 KiB |
BIN
assets/biohacker_splash.png
Normal file
|
After Width: | Height: | Size: 660 KiB |
@@ -74,6 +74,17 @@
|
||||
@"appTitle" : @"PIP",
|
||||
@"showBonus" : @YES,
|
||||
},
|
||||
@"ru.fivefit.biochecker" : @{
|
||||
@"locale" : @"ru",
|
||||
@"flavor" : @"biohacker",
|
||||
@"currency" : @643,
|
||||
@"supportPhone" : @"support@dinect.com",
|
||||
@"supportUrl" : @"http://www.dinect.com",
|
||||
@"endPoint" : @"https://pos-api.dinect.com/20130701/",
|
||||
@"appToken" : @"bdea0f3ba9034b688019a7cac753d1209e2b227f",
|
||||
@"appTitle" : @"BioChecker",
|
||||
@"showBonus" : @YES,
|
||||
},
|
||||
};
|
||||
|
||||
NSDictionary *buildSettings = settings[bundleIdentifier];
|
||||
|
||||
@@ -18,6 +18,7 @@ class Resources {
|
||||
case 'autobonus': return new Color(0xffeb0004);
|
||||
case 'dinect': return new Color(0xff3daee3);
|
||||
case 'crypto': return new Color(0xff0f3d87);
|
||||
case 'biohacker': return new Color(0xff464646);
|
||||
default: return new Color(0xffffffff);
|
||||
}
|
||||
}
|
||||
@@ -28,6 +29,7 @@ class Resources {
|
||||
case 'autobonus': return new Color(0xffeb0004);
|
||||
case 'dinect': return new Color(0xff33cc99);
|
||||
case 'crypto': return new Color(0xffffc34d);
|
||||
case 'biohacker': return new Color(0xffff6134);
|
||||
default: return new Color(0xffffffff);
|
||||
|
||||
}
|
||||
|
||||
@@ -152,4 +152,4 @@ packages:
|
||||
source: hosted
|
||||
version: "3.0.0"
|
||||
sdks:
|
||||
dart: ">=2.0.0-dev.23.0 <=2.0.0-edge.0d5cf900b021bf5c9fa593ffa12b15bcd1cc5fe0"
|
||||
dart: ">=2.0.0-dev.23.0 <=2.0.0-edge.3c4dccbd46f152be9e1b6ca95c57357e8e48057c"
|
||||
|
||||
@@ -30,11 +30,13 @@ flutter:
|
||||
- assets/pip_logo.png
|
||||
- assets/dinect_logo.png
|
||||
- assets/crypto_logo.png
|
||||
- assets/biohacker_logo.png
|
||||
|
||||
- assets/autobonus_splash.png
|
||||
- assets/pip_splash.png
|
||||
- assets/dinect_splash.png
|
||||
- assets/crypto_splash.png
|
||||
- assets/biohacker_splash.png
|
||||
|
||||
- assets/settings.png
|
||||
- assets/settings_arrow.png
|
||||
|
||||