capacitor.config.ts 582 B

123456789101112131415161718192021222324
  1. import { CapacitorConfig } from "@capacitor/cli"
  2. const config: CapacitorConfig = {
  3. appId: "io.freeshort.freeshort",
  4. appName: "FreeShort",
  5. webDir: "dist",
  6. bundledWebRuntime: true,
  7. server: {
  8. androidScheme: "https",
  9. cleartext: true
  10. },
  11. android: {
  12. flavor: "prod",
  13. buildOptions: {
  14. keystorePath: "zouma2024.keystore",
  15. keystorePassword: "3edc#EDC",
  16. keystoreAlias: "zouma",
  17. keystoreAliasPassword: "3edc#EDC",
  18. releaseType: "APK"
  19. },
  20. }
  21. }
  22. export default config