- 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
16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
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;
|