Revert "Debuggable option added, because lately the store demands builds with no debugging symbols", because it's done inside build.sh

This reverts commit bdaad3ec14.

I feel like a RUTHLESS DICTATOR revering people commits, MWAHAHA
This commit is contained in:
pelya
2013-11-17 19:19:43 +02:00
parent 0cd6238b44
commit e23be86346

View File

@@ -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