Created
November 17, 2011 10:04
-
-
Save jamztang/1372826 to your computer and use it in GitHub Desktop.
Settings.bundle instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# addDebugSettingsChild.sh | |
# | |
# Simple script to inject a Debug menu in an iPhone Settings plist. | |
# | |
# created 10.15.2008 by Andy Mroczkowski, mrox.net | |
THIS="`basename $0`" | |
PLISTBUDDY="/usr/libexec/PlistBuddy -x" | |
set -e | |
if [ -z "$1" ]; then | |
echo "Usage:" | |
echo " $THIS plist_file [child_pane_name]" | |
echo " - If unspecified, child_pane_name is 'Debug'" | |
exit 1 | |
fi | |
if [ ! -e "$1" ]; then | |
echo "[$THIS] file not found: '$1'" | |
exit 2 | |
fi | |
if [ ! -z "$2" ]; then | |
CHILD_PANE_NAME="$2" | |
else | |
CHILD_PANE_NAME="Debug" | |
fi | |
TARGET="$1" | |
echo "[$THIS] adding '$CHILD_PANE_NAME' child to: $TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:0 dict" "$TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:0:Type string 'PSGroupSpecifier'" "$TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:1 dict" "$TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:1:Type string 'PSChildPaneSpecifier'" "$TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:1:Title string '$CHILD_PANE_NAME Settings'" "$TARGET" | |
$PLISTBUDDY -c "Add PreferenceSpecifiers:1:File string '$CHILD_PANE_NAME'" "$TARGET" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Official Link | |
http://developer.apple.com/library/ios/#documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007005-SW1 | |
Adding a settings bundle | |
http://useyourloaf.com/blog/2010/5/18/adding-a-settings-bundle-to-an-iphone-app.html | |
Debug Only settings | |
http://mrox.net/blog/2008/11/16/adding-debug-only-preferences-in-iphone-applications/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$CONFIGURATION" == "Debug" ]; then | |
sh addDebugSettingsChild.sh "$SCRIPT_OUTPUT_FILE_0" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment