File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ SHELL := /bin/bash
5
5
# - https://developer.android.com/ndk/guides/android_mk
6
6
7
7
RELEASE_TYPE = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release' || echo 'debug')
8
+ RELEASE_TYPE_UNSIGNED = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release-unsigned' || echo 'debug')
8
9
RELEASE_TYPE_CAPS = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'Release' || echo 'Debug')
9
10
HAS_SECRETS = $(shell test -n "$$JKS_KEYPASS" && echo 'true' || echo 'false')
10
11
85
86
endif
86
87
87
88
# Signed release APK
88
- dist/aw-android.apk : $(APKDIR ) /$(RELEASE_TYPE ) /mobile-$(RELEASE_TYPE ) .apk
89
+ dist/aw-android.apk : $(APKDIR ) /$(RELEASE_TYPE ) /mobile-$(RELEASE_TYPE_UNSIGNED ) .apk
89
90
mkdir -p dist
90
91
@# Only sign if we have key secrets set ($JKS_KEYPASS and $JKS_STOREPASS)
91
92
ifneq ($(HAS_SECRETS ) , true)
You can’t perform that action at this time.
0 commit comments