platypush-app/README.md

19 lines
361 B
Markdown
Raw Permalink Normal View History

2021-02-26 00:11:20 +01:00
This repository contains the source for the Platypush mobile app. As of now only Android is supported.
## Build
2021-02-28 00:46:51 +01:00
Debug mode:
2021-02-26 00:11:20 +01:00
```shell
2021-04-28 02:03:01 +02:00
./gradlew assembleDebug
# APK generated under app/build/outputs/apk/debug/app-debug.apk
2021-02-26 00:11:20 +01:00
```
2021-02-28 00:46:51 +01:00
Release mode:
```shell
2021-04-28 02:03:01 +02:00
./gradlew assembleRelease
# APK generated under app/build/outputs/apk/release/app-release-unsigned.apk
2021-02-28 00:46:51 +01:00
```