暫無描述

capacitor.config.ts 569B

123456789101112131415161718192021222324
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'io.ionic.starter',
  4. appName: 'Stark',
  5. webDir: 'www',
  6. bundledWebRuntime: false,
  7. cordova: {
  8. preferences: {
  9. ScrollEnabled: 'false',
  10. 'android-minSdkVersion': '28',
  11. 'android-targetSdkVersion': '28',
  12. BackupWebStorage: 'none',
  13. SplashMaintainAspectRatio: 'true',
  14. FadeSplashScreenDuration: '300',
  15. SplashShowOnlyFirstTime: 'false',
  16. SplashScreen: 'screen',
  17. SplashScreenDelay: '3000'
  18. }
  19. }
  20. };
  21. export default config;