feat(android): add Capacitor setup for Android APK builds

- Migrate web assets from root to www/ directory
- Add Android native project with Capacitor 8
- Add GitHub Actions workflow for automated APK builds
- Configure app identity and splash screens
This commit is contained in:
2026-01-21 18:08:57 +01:00
parent 49e981a4b5
commit fd06e2fe83
87 changed files with 2416 additions and 6 deletions

15
capacitor.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'es.dariosevilla.impostor',
appName: 'Juego del Impostor',
webDir: 'www',
server: {
androidScheme: 'https'
},
android: {
backgroundColor: '#0a0a0a'
}
};
export default config;