File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ SHELL := /bin/bash
55# - https://developer.android.com/ndk/guides/android_mk
66
77RELEASE_TYPE = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release' || echo 'debug')
8+ RELEASE_TYPE_UNSIGNED = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'release-unsigned' || echo 'debug')
89RELEASE_TYPE_CAPS = $(shell test -n "$$RELEASE" && $$RELEASE && echo 'Release' || echo 'Debug')
910HAS_SECRETS = $(shell test -n "$$JKS_KEYPASS" && echo 'true' || echo 'false')
1011
8586endif
8687
8788# 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
8990 mkdir -p dist
9091 @# Only sign if we have key secrets set ($JKS_KEYPASS and $JKS_STOREPASS)
9192ifneq ($(HAS_SECRETS ) , true)
You can’t perform that action at this time.
0 commit comments