28 lines
739 B
TypeScript
28 lines
739 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'io.ionic.starter',
|
|
appName: 'ichamba',
|
|
webDir: 'www',
|
|
server: {
|
|
androidScheme: 'https'
|
|
},
|
|
cordova: {
|
|
preferences: {
|
|
ScrollEnabled: 'false',
|
|
'android-targetSdkVersion': '30',
|
|
'android-minSdkVersion': '19',
|
|
BackupWebStorage: 'none',
|
|
SplashMaintainAspectRatio: 'true',
|
|
FadeSplashScreenDuration: '300',
|
|
SplashShowOnlyFirstTime: 'false',
|
|
SplashScreen: 'screen',
|
|
SplashScreenDelay: '3000',
|
|
GOOGLE_MAPS_ANDROID_API_KEY: 'AIzaSyBmkTsg0-1VKllM_vHD6V1EhPnF0YUP-88',
|
|
GOOGLE_MAPS_IOS_API_KEY: 'AIzaSyBmkTsg0-1VKllM_vHD6V1EhPnF0YUP-88'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|