mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-07 22:12:53 +00:00
24 lines
560 B
TypeScript
24 lines
560 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;
|