23 lines
504 B
Markdown
23 lines
504 B
Markdown
# MetalCircle Android-App
|
|
|
|
Die App verpackt die bestehende MetalCircle-Webanwendung mit Capacitor.
|
|
Sie lädt die produktive HTTPS-Adresse `https://konzerte.pinguholic.de/` und
|
|
implementiert keine zweite Webanwendung.
|
|
|
|
## Entwicklung und Build
|
|
|
|
```bash
|
|
npm install
|
|
npm run sync
|
|
npm run build
|
|
```
|
|
|
|
Die Debug-APK liegt danach unter
|
|
`android/app/build/outputs/apk/debug/app-debug.apk`.
|
|
|
|
Installation auf einem verbundenen Gerät:
|
|
|
|
```bash
|
|
adb install -r android/app/build/outputs/apk/debug/app-debug.apk
|
|
```
|