Skip to content

Commit ad4e4f8

Browse files
committed
readme and comments
1 parent 72cbc55 commit ad4e4f8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

build/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
if (buildAsApplication) {
1616
applicationId "com.nesbox.tic"
1717
}
18-
minSdkVersion 24
19-
targetSdkVersion 31
18+
minSdkVersion 24 // Android 7.0 (Nougat)
19+
targetSdkVersion 31 // Android 12 (Snow Cone)
2020
versionCode 10200
2121
versionName "1.02.00"
2222
ndk {

build/android/readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# USEFUL ADB COMMANDS
22

33
## BUILD IN DOCKER
4+
5+
You may need to add exec `sdkmanager "ndk;23.2.8568313"` just before `./gradlew assembleRelease`, the version must match the one shown in `app/build.gradle`.
6+
47
```
58
winpty docker exec -it nice_goldwasser bash -c "cd /tic80/build/android && ./gradlew assembleRelease" && adb install -r app/build/outputs/apk/arm8/release/app-arm8-release.apk && adb shell am start -n com.nesbox.tic/com.nesbox.tic.TIC
69
```

0 commit comments

Comments
 (0)