1ece8e1061
User picked the brand-blue look for both platforms. Apply .sysbar-blue on any native platform; set white icons via the safe-area plugin on Android and via @capacitor/status-bar on iOS. capacitor.config statusBarStyle/navigationBarStyle -> DARK (light icons) so native builds match before JS runs. iOS is live, so this web change reaches it immediately — verify on an iPhone. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
36 lines
822 B
JSON
36 lines
822 B
JSON
{
|
|
"appId": "com.bizgaze.connect",
|
|
"appName": "Biz Connect",
|
|
"webDir": "www",
|
|
"server": {
|
|
"url": "https://remote.bizgaze.com",
|
|
"cleartext": false,
|
|
"androidScheme": "https"
|
|
},
|
|
"plugins": {
|
|
"PushNotifications": {
|
|
"presentationOptions": ["badge", "sound", "alert"]
|
|
},
|
|
"SafeArea": {
|
|
"detectViewportFitCoverChanges": true,
|
|
"initialViewportFitCover": true,
|
|
"offsetForKeyboardInsetBug": true,
|
|
"statusBarStyle": "DARK",
|
|
"navigationBarStyle": "DARK"
|
|
},
|
|
"SystemBars": {
|
|
"insetsHandling": "disable"
|
|
},
|
|
"Keyboard": {
|
|
"resize": "none"
|
|
},
|
|
"SplashScreen": {
|
|
"launchShowDuration": 900,
|
|
"launchAutoHide": true,
|
|
"backgroundColor": "#16294F",
|
|
"showSpinner": false,
|
|
"iosSpinnerStyle": "large"
|
|
}
|
|
}
|
|
}
|