mirror of
https://github.com/MultiMote/niimblue
synced 2026-01-19 19:37:11 +03:00
28 lines
617 B
TypeScript
28 lines
617 B
TypeScript
import { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "ru.mmote.niimblues",
|
|
appName: "NiimBlues",
|
|
webDir: "www",
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchShowDuration: 0,
|
|
},
|
|
},
|
|
android: {
|
|
buildOptions: {
|
|
releaseType: "APK",
|
|
keystorePath: process.env.KEYSTORE_PATH,
|
|
keystorePassword: process.env.KEYSTORE_PASSWORD,
|
|
keystoreAlias: process.env.KEYSTORE_ALIAS,
|
|
keystoreAliasPassword: process.env.KEYSTORE_ALIAS_PASSWORD,
|
|
signingType: "apksigner",
|
|
},
|
|
},
|
|
ios: {
|
|
scheme: "NiimBlues",
|
|
},
|
|
};
|
|
|
|
export default config;
|