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