build: fix configs for android release builds

This commit is contained in:
Rainer Killinger
2021-11-22 17:50:36 +01:00
parent 5ffa699f57
commit b509dd2e2d
6 changed files with 3247 additions and 6298 deletions

View File

@@ -7,17 +7,17 @@ const config: CapacitorConfig = {
bundledWebRuntime: false,
cordova: {
preferences: {
AndroidXEnabled: 'true',
ScrollEnabled: 'false',
'AndroidXEnabled': 'true',
'ScrollEnabled': 'false',
'android-minSdkVersion': '22',
BackupWebStorage: 'none',
SplashMaintainAspectRatio: 'true',
FadeSplashScreenDuration: '300',
SplashShowOnlyFirstTime: 'false',
SplashScreen: 'screen',
SplashScreenDelay: '3000'
}
}
'BackupWebStorage': 'none',
'SplashMaintainAspectRatio': 'true',
'FadeSplashScreenDuration': '300',
'SplashShowOnlyFirstTime': 'false',
'SplashScreen': 'screen',
'SplashScreenDelay': '3000',
},
},
};
export default config;