From e23be8634608632ee3d0e40597fa9bee2af59acd Mon Sep 17 00:00:00 2001 From: pelya Date: Sun, 17 Nov 2013 19:19:43 +0200 Subject: [PATCH] Revert "Debuggable option added, because lately the store demands builds with no debugging symbols", because it's done inside build.sh This reverts commit bdaad3ec146b5875aedc46d38b9434dca1f4151f. I feel like a RUTHLESS DICTATOR revering people commits, MWAHAHA --- changeAppSettings.sh | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/changeAppSettings.sh b/changeAppSettings.sh index ec79d110d..63c73cc85 100755 --- a/changeAppSettings.sh +++ b/changeAppSettings.sh @@ -25,23 +25,6 @@ echo "===== libSDL on Android configuration =====" echo echo "If you will supply empty string as answer the previous value will be used" -if [ -z "$Debuggable" -o -z "$AUTO" ]; then -echo -echo -n "Debuggable Build? (y) or (n): ($Debuggable): " -read var -if [ -n "$var" ] ; then - -if [ "$var" = "y" ] ; then - Debuggable="true" -else - Debuggable="false" -fi - - CHANGED=1 -fi -fi - - if [ -z "$LibSdlVersion" -o -z "$AUTO" ]; then echo echo -n "libSDL version to use (1.2, 1.3, or 2.0) ($LibSdlVersion): " @@ -783,9 +766,6 @@ echo "# The application settings for Android libSDL port" >> AndroidAppSettings. echo >> AndroidAppSettings.cfg echo AppSettingVersion=$CHANGE_APP_SETTINGS_VERSION >> AndroidAppSettings.cfg echo >> AndroidAppSettings.cfg -echo "# Debuggable Build? (y) or (n):" >> AndroidAppSettings.cfg -echo Debuggable=$Debuggable >> AndroidAppSettings.cfg -echo >> AndroidAppSettings.cfg echo "# libSDL version to use (1.2 or 1.3, specify 1.3 for SDL2)" >> AndroidAppSettings.cfg echo LibSdlVersion=$LibSdlVersion >> AndroidAppSettings.cfg echo >> AndroidAppSettings.cfg @@ -1312,7 +1292,6 @@ echo Patching project/AndroidManifest.xml cat project/AndroidManifestTemplate.xml | \ sed "s/package=.*/package=\"$AppFullName\"/" | \ sed "s/android:screenOrientation=.*/android:screenOrientation=\"$ScreenOrientation1\"/" | \ - sed "s/android:debuggable=.*/android:debuggable=\"$Debuggable\"/" | \ sed "s^android:versionCode=.*^android:versionCode=\"$AppVersionCode\"^" | \ sed "s^android:versionName=.*^android:versionName=\"$AppVersionName\"^" > \ project/AndroidManifest.xml