mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 20:12:51 +00:00
24 lines
579 B
TypeScript
24 lines
579 B
TypeScript
import {CapacitorConfig} from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'de.any_school.app',
|
|
appName: 'StApps',
|
|
webDir: 'www',
|
|
bundledWebRuntime: false,
|
|
cordova: {
|
|
preferences: {
|
|
'AndroidXEnabled': 'true',
|
|
'ScrollEnabled': 'false',
|
|
'android-minSdkVersion': '22',
|
|
'BackupWebStorage': 'none',
|
|
'SplashMaintainAspectRatio': 'true',
|
|
'FadeSplashScreenDuration': '300',
|
|
'SplashShowOnlyFirstTime': 'false',
|
|
'SplashScreen': 'screen',
|
|
'SplashScreenDelay': '3000',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|