Name Date Size #Lines LOC

..--

src/IorapTestApp/H25-Apr-2025-36,41636,303

Android.bpH A D25-Apr-2025856 2724

README.mdH A D25-Apr-2025818 4027

build.shH A D25-Apr-2025133 63

iorap_test_app_v1.apkHD25-Apr-20251.6 MiB

iorap_test_app_v2.apkHD25-Apr-20251.6 MiB

iorap_test_app_v3.apkHD25-Apr-20251.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