25 lines
808 B
Markdown
25 lines
808 B
Markdown
# MetalCircle Android-App
|
|
|
|
Die App verpackt die bestehende MetalCircle-Webanwendung mit Capacitor.
|
|
Sie lädt standardmäßig die aktuelle Pre-Production-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
|
|
```
|
|
|
|
Für den separaten Pre-Production-Firebase-Zugang und die Geräteanmeldung siehe [Pre-Production Deployment](../docs/wiki/Firebase.md#pre-production-deployment). Die dortige Standard-HTTPS-Adresse erfordert keine neue APK, sofern die installierte App bereits diese Adresse lädt.
|