Added Biochecker, refs #10923

This commit is contained in:
vtretyakov
2018-04-13 11:41:17 +07:00
parent 1b9e5e1657
commit e838b12b70
14 changed files with 33 additions and 2 deletions

View File

@@ -160,6 +160,19 @@ android {
buildConfigField "String", "appTitle", "\"dinect (develop)\"" buildConfigField "String", "appTitle", "\"dinect (develop)\""
buildConfigField "boolean", "showBonus", "true" 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 { sourceSets {

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,3 @@
<resources>
<string name="app_name">BioChecker</string>
</resources>

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

BIN
assets/biohacker_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

BIN
assets/biohacker_splash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 KiB

View File

@@ -74,6 +74,17 @@
@"appTitle" : @"PIP", @"appTitle" : @"PIP",
@"showBonus" : @YES, @"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]; NSDictionary *buildSettings = settings[bundleIdentifier];

View File

@@ -18,6 +18,7 @@ class Resources {
case 'autobonus': return new Color(0xffeb0004); case 'autobonus': return new Color(0xffeb0004);
case 'dinect': return new Color(0xff3daee3); case 'dinect': return new Color(0xff3daee3);
case 'crypto': return new Color(0xff0f3d87); case 'crypto': return new Color(0xff0f3d87);
case 'biohacker': return new Color(0xff464646);
default: return new Color(0xffffffff); default: return new Color(0xffffffff);
} }
} }
@@ -28,6 +29,7 @@ class Resources {
case 'autobonus': return new Color(0xffeb0004); case 'autobonus': return new Color(0xffeb0004);
case 'dinect': return new Color(0xff33cc99); case 'dinect': return new Color(0xff33cc99);
case 'crypto': return new Color(0xffffc34d); case 'crypto': return new Color(0xffffc34d);
case 'biohacker': return new Color(0xffff6134);
default: return new Color(0xffffffff); default: return new Color(0xffffffff);
} }

View File

@@ -152,4 +152,4 @@ packages:
source: hosted source: hosted
version: "3.0.0" version: "3.0.0"
sdks: 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"

View File

@@ -30,11 +30,13 @@ flutter:
- assets/pip_logo.png - assets/pip_logo.png
- assets/dinect_logo.png - assets/dinect_logo.png
- assets/crypto_logo.png - assets/crypto_logo.png
- assets/biohacker_logo.png
- assets/autobonus_splash.png - assets/autobonus_splash.png
- assets/pip_splash.png - assets/pip_splash.png
- assets/dinect_splash.png - assets/dinect_splash.png
- assets/crypto_splash.png - assets/crypto_splash.png
- assets/biohacker_splash.png
- assets/settings.png - assets/settings.png
- assets/settings_arrow.png - assets/settings_arrow.png