Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created June 20, 2022 06:05
Show Gist options
  • Select an option

  • Save vaibhavgehani/259d479ac4d9631713583eb7b734e691 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgehani/259d479ac4d9631713583eb7b734e691 to your computer and use it in GitHub Desktop.
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.example.app',
appName: 'cordovaToCapacitor',
webDir: 'www',
bundledWebRuntime: false,
plugins: {
SplashScreen: {
"launchAutoHide": false,
"backgroundColor": "#000000",
"androidSplashResourceName": "splash",
"androidScaleType": "CENTER_CROP",
"showSpinner": true,
"androidSpinnerStyle": "large",
"iosSpinnerStyle": "small",
"spinnerColor": "#999999",
"splashFullScreen": true,
"splashImmersive": true
},
PushNotifications: {
"presentationOptions": ["badge", "sound", "alert"]
}
}
};
export default config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment