mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 12:34:22 +08:00
27 lines
508 B
TypeScript
27 lines
508 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli'
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.sectl.secscore',
|
|
appName: 'SecScore',
|
|
webDir: 'out',
|
|
server: {
|
|
androidScheme: 'https'
|
|
},
|
|
plugins: {
|
|
Preferences: {
|
|
group: 'SecScore'
|
|
}
|
|
},
|
|
android: {
|
|
buildOptions: {
|
|
keystorePath: undefined,
|
|
keystorePassword: undefined,
|
|
keystoreAlias: undefined,
|
|
keystoreAliasPassword: undefined,
|
|
signingType: 'apksigner'
|
|
}
|
|
}
|
|
}
|
|
|
|
export default config
|