2f02e65ab6
- Install Capacitor dependencies (@capacitor/cli, @capacitor/core, @capacitor/android, @capacitor/app, @capacitor/status-bar, sharp) - Create capacitor.config.ts with app configuration - Update .gitignore to exclude Android build outputs and keystore files - Generate icon-512.png from logo.svg - Add scripts for icon generation, APK building, and keystore creation - Initialize Capacitor Android platform - Configure build.gradle with signing support - Generate Android app icons in all required densities - Add npm scripts: 'icons' and 'build:apk'
16 lines
498 B
Groovy
16 lines
498 B
Groovy
ext {
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 36
|
|
targetSdkVersion = 36
|
|
androidxActivityVersion = '1.11.0'
|
|
androidxAppCompatVersion = '1.7.1'
|
|
androidxCoordinatorLayoutVersion = '1.3.0'
|
|
androidxCoreVersion = '1.17.0'
|
|
androidxFragmentVersion = '1.8.9'
|
|
coreSplashScreenVersion = '1.2.0'
|
|
androidxWebkitVersion = '1.14.0'
|
|
junitVersion = '4.13.2'
|
|
androidxJunitVersion = '1.3.0'
|
|
androidxEspressoCoreVersion = '3.7.0'
|
|
cordovaAndroidVersion = '14.0.1'
|
|
} |