请输入文本

This commit is contained in:
Fox_block
2026-03-01 13:43:52 +08:00
parent 943dc1a27a
commit 38240a42ab
103 changed files with 5382 additions and 1638 deletions
+26
View File
@@ -0,0 +1,26 @@
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