You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker
7ee447c011
|
4 months ago | |
---|---|---|
.. | ||
src/IorapTestApp | 4 months ago | |
Android.bp | 4 months ago | |
README.md | 4 months ago | |
build.sh | 4 months ago | |
iorap_test_app_v1.apk | 4 months ago | |
iorap_test_app_v2.apk | 4 months ago | |
iorap_test_app_v3.apk | 4 months ago |
README.md
Introduction
This directory contains a toy app for iorap test. The app shows a version number when started and reads a text file.
- iorap_test_app_v1.apk: test app version 1
- iorap_test_app_v2.apk: test app version 2 (same with version 1 except for the version)
- iorap_test_app_v3.apk: test app version 3 (same with version 1 except for the version)
- src: The src of the app.
Build
- Set ANDROID_SDK_ROOT, For example:
export ANDROID_SDK_ROOT=.../Android/Sdk
- The command to build the apk is:
bash build.sh
Version Change
To change the version of the app,
- open file src/IorapTestApp/app/build.gradle
- change the "versionCode" field as the following
android { ... defaultConfig { ... versionCode = 1.0 ... } ... }