Skip to content

Commit

Permalink
Fix wrong android versionName
Browse files Browse the repository at this point in the history
Before, android versionName was set to "...13", which made the f-droid build fail.
  • Loading branch information
est31 committed Aug 21, 2015
1 parent ffe3f03 commit 6a1047d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/android/Makefile
Expand Up @@ -867,7 +867,7 @@ $(ROOT)/jni/src/android_version.h : prep_srcdir
fi

manifest :
@BASE_VERSION="${VERS_MAJOR}.${VERS_MINOR}.${VERS_PATCH}"; \
@BASE_VERSION="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"; \
if [ "${NDEBUG}x" != "x" ] ; then \
DBG=''; \
DBG_FLAG="android:debuggable=\"false\""; \
Expand Down

0 comments on commit 6a1047d

Please sign in to comment.