34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|||
|
|
|
||
|
|
const config: CapacitorConfig = {
|
||
|
|
appId: 'com.openchamber.app',
|
||
|
|
appName: 'OpenChamber',
|
||
|
|
webDir: 'dist',
|
||
|
|
server: {
|
||
|
|
androidScheme: 'https',
|
||
|
|
},
|
||
|
|
plugins: {
|
||
|
|
Keyboard: {
|
||
|
|
// 'none' leaves the WebView at full height; the UI follows the keyboard
|
||
|
|
// itself via the --oc-keyboard-inset CSS variable driven by keyboardWillShow
|
||
|
|
// (see useNativeMobileChrome). The built-in 'native' resize lands only after
|
||
|
|
// the keyboard animation finishes, which looked like a ~1.5s lag.
|
||
|
|
resize: 'none',
|
||
|
|
resizeOnFullScreen: true,
|
||
|
|
autoBackdropColor: 'dom',
|
||
|
|
},
|
||
|
|
StatusBar: {
|
||
|
|
overlaysWebView: true,
|
||
|
|
style: 'DEFAULT',
|
||
|
|
},
|
||
|
|
PushNotifications: {
|
||
|
|
// Never display an APNs alert while the app is foreground. The server always sends
|
||
|
|
// (no racy visibility gate); iOS suppresses the foreground banner, so there is no
|
||
|
|
// notification when the app is active. Background pushes are shown by iOS as usual.
|
||
|
|
presentationOptions: [],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default config;
|