Skip to content

Commit f944ba6

Browse files
committed
frontend/android: push min sdk version to 23 (Android 6)
1 parent 8209825 commit f944ba6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/mobileserver/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include ../../version.mk.inc
44
# Set -glflags to fix the vendor issue with gomobile, see: https://github.com/golang/go/issues/67927#issuecomment-2241523694
55
build-android:
66
# androidapi version should match minSdkVersion in frontends/android/BitBoxApp/app/build.gradle
7-
ANDROID_HOME=${ANDROID_SDK_ROOT} gomobile bind -x -a -glflags="-mod=readonly" -ldflags="-s -w $(GO_VERSION_LDFLAGS)" -trimpath -target android -androidapi 21 .
7+
ANDROID_HOME=${ANDROID_SDK_ROOT} gomobile bind -x -a -glflags="-mod=readonly" -ldflags="-s -w $(GO_VERSION_LDFLAGS)" -trimpath -target android -androidapi 23 .
88
build-ios:
99
gomobile bind -x -a -glflags="-mod=readonly" -tags="timetzdata" -trimpath -ldflags="-s -w $(GO_VERSION_LDFLAGS)" -target ios,iossimulator .
1010
clean:

frontends/android/BitBoxApp/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ android {
1515
applicationId "ch.shiftcrypto.bitboxapp"
1616
// minSdkVersion should match the `-androidapi` gomobile bind flag
1717
// in backend/mobileserver/Makefile
18-
minSdkVersion 21
18+
minSdkVersion 23
1919
targetSdkVersion 35
2020
versionCode 66
2121
versionName "${appVersion}"

0 commit comments

Comments
 (0)