commit 21dd75e0fdc3f3bb3c0c385b52ef51325e21eccb
Author: Christopher Roy Bratusek <nano@jpberlin.de>
Date:   Sun Sep 30 19:54:10 2018 +0200

    change versionCode + versionName

diff --git a/app/build.gradle b/app/build.gradle
index 325c69a..56945dc 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -9,9 +9,15 @@ android {
     defaultConfig {
         minSdkVersion 21
         targetSdkVersion 27
-        versionCode 14
-        versionName "2018-04-29-alpha"
+        def ourVersionCode = Integer.parseInt(new Date().format('yyMMdd'))
+        def ourVersionName = ourVersionCode + "-nightly"
+
+        versionCode ourVersionCode
+        versionName ourVersionName
+
         vectorDrawables.useSupportLibrary = true
+
+        logger.lifecycle('Starting build for version {} ({})...', versionName, versionCode)
     }
     sourceSets {
         main {
diff --git a/buildscripts/include/download-sdk.sh b/buildscripts/include/download-sdk.sh
index 4989dc3..c5753f4 100755
--- a/buildscripts/include/download-sdk.sh
+++ b/buildscripts/include/download-sdk.sh
@@ -11,7 +11,7 @@ if [ "$os" == "linux" ]; then
 	hash yum &> /dev/null && sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686 \
 		autoconf m4 pkgconfig libtool
 	apt-get -v &> /dev/null && [ $TRAVIS -eq 0 ] && \
-		sudo apt-get install lib32z1 lib32ncurses5 lib32stdc++6 autoconf m4 pkg-config libtool
+		sudo apt-get install lib32z1 lib32ncurses6 lib32stdc++6 autoconf m4 pkg-config libtool
 
 	os_ndk="linux"
 elif [ "$os" == "macosx" ]; then
