Skip to content

Commit 6a1047d

Browse files
committedAug 21, 2015
Fix wrong android versionName
Before, android versionName was set to "...13", which made the f-droid build fail.
1 parent ffe3f03 commit 6a1047d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎build/android/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ $(ROOT)/jni/src/android_version.h : prep_srcdir
867867
fi
868868

869869
manifest :
870-
@BASE_VERSION="${VERS_MAJOR}.${VERS_MINOR}.${VERS_PATCH}"; \
870+
@BASE_VERSION="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"; \
871871
if [ "${NDEBUG}x" != "x" ] ; then \
872872
DBG=''; \
873873
DBG_FLAG="android:debuggable=\"false\""; \

0 commit comments

Comments
 (0)
Please sign in to comment.