Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/IorapTestApp/ | H | 25-Apr-2025 | - | 36,416 | 36,303 | |
Android.bp | H A D | 25-Apr-2025 | 856 | 27 | 24 | |
README.md | H A D | 25-Apr-2025 | 818 | 40 | 27 | |
build.sh | H A D | 25-Apr-2025 | 133 | 6 | 3 | |
iorap_test_app_v1.apk | HD | 25-Apr-2025 | 1.6 MiB | |||
iorap_test_app_v2.apk | HD | 25-Apr-2025 | 1.6 MiB | |||
iorap_test_app_v3.apk | HD | 25-Apr-2025 | 1.6 MiB |
README.md
1# Introduction 2 3This directory contains a toy app for iorap test. The app shows a version number 4when started and reads a text file. 5 6 * iorap_test_app_v1.apk: test app version 1 7 * iorap_test_app_v2.apk: test app version 2 (same with version 1 except for the 8 version) 9 * iorap_test_app_v3.apk: test app version 3 (same with version 1 except for the 10 version) 11 * src: The src of the app. 12 13# Build 141. Set ANDROID_SDK_ROOT, For example: 15 16 export ANDROID_SDK_ROOT=.../Android/Sdk 17 182. The command to build the apk is: 19 20 bash build.sh 21 22# Version Change 23To change the version of the app, 24 1. open file src/IorapTestApp/app/build.gradle 25 2. change the "versionCode" field as the following 26 27 android { 28 ... 29 defaultConfig { 30 ... 31 versionCode = 1.0 32 ... 33 } 34 ... 35 } 36 37 38 39 40