-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
37 lines (35 loc) · 1.09 KB
/
capacitor.config.ts
File metadata and controls
37 lines (35 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.massivemagnetics.bandofiai',
appName: 'Bando-Fi AI',
webDir: 'dist',
server: {
androidScheme: 'https',
iosScheme: 'https'
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
backgroundColor: '#000000',
showSpinner: true,
spinnerColor: '#39ff14'
}
},
android: {
buildOptions: {
// Note: For production signed builds, set these via environment variables:
// ANDROID_KEYSTORE_PATH, ANDROID_KEYSTORE_PASSWORD, ANDROID_KEY_ALIAS, ANDROID_KEY_PASSWORD
// For unsigned builds (development), these can remain undefined
keystorePath: process.env.ANDROID_KEYSTORE_PATH || undefined,
keystorePassword: process.env.ANDROID_KEYSTORE_PASSWORD || undefined,
keystoreAlias: process.env.ANDROID_KEY_ALIAS || undefined,
keystoreAliasPassword: process.env.ANDROID_KEY_PASSWORD || undefined,
releaseType: 'APK'
}
},
ios: {
contentInset: 'automatic',
scheme: 'Bando-Fi AI'
}
};
export default config;