|
|
@@ -1,4 +1,4 @@
|
|
|
-import { CapacitorConfig } from "@capacitor/cli";
|
|
|
+import { CapacitorConfig } from "@capacitor/cli"
|
|
|
|
|
|
const config: CapacitorConfig = {
|
|
|
appId: "io.freeshort.freeshort",
|
|
|
@@ -7,16 +7,18 @@ const config: CapacitorConfig = {
|
|
|
bundledWebRuntime: true,
|
|
|
server: {
|
|
|
androidScheme: "https",
|
|
|
- cleartext: true,
|
|
|
+ cleartext: true
|
|
|
},
|
|
|
android: {
|
|
|
+ flavor: "prod",
|
|
|
buildOptions: {
|
|
|
- keystorePath: "./android/zouma2024.keystore",
|
|
|
+ keystorePath: "zouma2024.keystore",
|
|
|
keystorePassword: "3edc#EDC",
|
|
|
keystoreAlias: "zouma",
|
|
|
keystoreAliasPassword: "3edc#EDC",
|
|
|
+ releaseType: "APK"
|
|
|
},
|
|
|
- },
|
|
|
-};
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
-export default config;
|
|
|
+export default config
|