21 lines
404 B
Markdown
21 lines
404 B
Markdown
# Android App with 2 Activities
|
|
|
|
Goal is to have an Android Application with "more than 1 activiy" and
|
|
thus to allow enable to start those Activities
|
|
The app package is named `app.twoactivities`
|
|
|
|
## usage
|
|
|
|
0. clone this repo
|
|
1. run
|
|
|
|
```
|
|
./build-android-app.sh
|
|
```
|
|
|
|
2. upon success the apk file created is in app/result/app.apk and can be installed via `adb`
|
|
```
|
|
adb install -r app/result/app.apk
|
|
```
|
|
|
|
|