capacitor.config.ts 690 B

1234567891011121314151617181920212223242526272829
  1. import type { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'com.heychat.live',
  4. appName: 'hey聊',
  5. webDir: 'www',
  6. android: {
  7. buildOptions: {
  8. releaseType: 'APK',
  9. keystorePath: './heychat.keystore',
  10. keystorePassword: '12345678',
  11. keystoreAlias: 'heychat',
  12. keystoreAliasPassword: '12345678'
  13. }
  14. },
  15. cordova: {
  16. preferences: {
  17. ScrollEnabled: 'false',
  18. BackupWebStorage: 'none',
  19. SplashMaintainAspectRatio: 'true',
  20. FadeSplashScreenDuration: '300',
  21. SplashShowOnlyFirstTime: 'false',
  22. SplashScreen: 'screen',
  23. SplashScreenDelay: '3000'
  24. }
  25. }
  26. };
  27. export default config;