initial commit. simple working hello world using capacitor framework.

This commit is contained in:
2026-04-27 09:40:11 +00:00
parent d2800f36f1
commit b58ba666ec
8 changed files with 1321 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.kryzgo.app',
appName: 'kryz-go',
webDir: 'www',
android: {
buildOptions: {
keystorePath: undefined,
keystoreAlias: undefined,
},
},
};
export default config;