1234567891011121314151617181920212223242526272829 |
- import type { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'com.heychat.live',
- appName: 'hey聊',
- webDir: 'www',
- android: {
- buildOptions: {
- releaseType: 'APK',
- keystorePath: './heychat.keystore',
- keystorePassword: '12345678',
- keystoreAlias: 'heychat',
- keystoreAliasPassword: '12345678'
- }
- },
- cordova: {
- preferences: {
- ScrollEnabled: 'false',
- BackupWebStorage: 'none',
- SplashMaintainAspectRatio: 'true',
- FadeSplashScreenDuration: '300',
- SplashShowOnlyFirstTime: 'false',
- SplashScreen: 'screen',
- SplashScreenDelay: '3000'
- }
- }
- };
- export default config;
|