Created
June 20, 2022 06:05
-
-
Save vaibhavgehani/259d479ac4d9631713583eb7b734e691 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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