| 12345678910111213141516171819202122 |
- import { CapacitorConfig } from "@capacitor/cli";
- const config: CapacitorConfig = {
- appId: "io.freeshort.freeshort",
- appName: "FreeShort",
- webDir: "dist",
- bundledWebRuntime: true,
- server: {
- androidScheme: "https",
- cleartext: true,
- },
- android: {
- buildOptions: {
- keystorePath: "./android/zouma2024.keystore",
- keystorePassword: "3edc#EDC",
- keystoreAlias: "zouma",
- keystoreAliasPassword: "3edc#EDC",
- },
- },
- };
- export default config;
|