2014-05-21 07:01:41 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-01-09 19:39:04 -05:00
|
|
|
# reads values from JSON
|
|
|
|
jsonValue() {
|
|
|
|
KEY=$1
|
|
|
|
num=$2
|
|
|
|
awk -F"[,:}]" '{for(i=1;i<=NF;i++){if($i~/'$KEY'\042/){print $(i+1)}}}' | tr -d '"' | sed -n ${num}p
|
|
|
|
}
|
|
|
|
|
2014-05-21 07:01:41 -04:00
|
|
|
# go to root
|
|
|
|
cd `dirname $0`
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
DIR=release/cca
|
2015-01-09 19:39:04 -05:00
|
|
|
PROJNAME=`less dist/manifest.json | jsonValue name 1 | sed -e 's/^ *//' -e 's/ *$//'`
|
2014-05-21 07:01:41 -04:00
|
|
|
|
2014-07-24 03:40:00 -04:00
|
|
|
# create
|
2014-05-21 07:01:41 -04:00
|
|
|
rm -rf $DIR
|
|
|
|
mkdir -p $DIR
|
2014-07-24 03:40:00 -04:00
|
|
|
cca create $DIR/Whiteout --link-to=dist/manifest.json
|
|
|
|
|
|
|
|
#prepare
|
|
|
|
cd $DIR/Whiteout
|
|
|
|
cca prepare
|
|
|
|
|
2015-01-10 06:51:43 -05:00
|
|
|
#
|
|
|
|
# post-build tweaks
|
|
|
|
#
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
echo "## Running post-build tweaks"
|
|
|
|
|
2014-07-24 03:40:00 -04:00
|
|
|
# cp signing config
|
2015-01-10 06:51:43 -05:00
|
|
|
echo "Copy Android signing config"
|
2015-01-09 19:39:04 -05:00
|
|
|
cp ../../../res/android-release-keys.properties .
|
|
|
|
|
|
|
|
# status bar should not overlay the web view
|
2015-01-10 06:51:43 -05:00
|
|
|
echo "Tweaking iOS status bar to not overlay the web view"
|
2015-01-09 19:39:04 -05:00
|
|
|
sed -i "" 's/StatusBarOverlaysWebView" value="true"/StatusBarOverlaysWebView" value="false"/' "platforms/ios/$PROJNAME/config.xml"
|
2015-01-10 06:51:43 -05:00
|
|
|
|
2015-01-09 19:39:04 -05:00
|
|
|
# status bar should use dark font on light background
|
2015-01-10 06:51:43 -05:00
|
|
|
echo "Tweaking iOS status bar to use dark font on light background"
|
2015-01-09 19:39:04 -05:00
|
|
|
sed -i "" 's/StatusBarStyle" value="lightcontent"/StatusBarStyle" value="darkcontent"/' "platforms/ios/$PROJNAME/config.xml"
|
|
|
|
|
2015-01-10 06:51:43 -05:00
|
|
|
# copy splash screens
|
|
|
|
echo "Copying splash screens"
|
|
|
|
cp ../../../src/img/Default* "platforms/ios/$PROJNAME/Resources/splash"
|
|
|
|
|
2015-01-10 07:16:03 -05:00
|
|
|
# fixing missing/wrong icons
|
|
|
|
echo "Fixing wrong/missing iOS icons"
|
|
|
|
cp ../../../src/img/icon-60-ios.png "platforms/ios/$PROJNAME/Resources/icons/icon-60.png"
|
|
|
|
cp ../../../src/img/icon-180-ios.png "platforms/ios/$PROJNAME/Resources/icons/icon-60@3x.png"
|
|
|
|
cp ../../../src/img/icon-87-ios.png "platforms/ios/$PROJNAME/Resources/icons/icon-small@3x.png"
|
|
|
|
cp ../../../src/img/icon-120-ios.png "platforms/ios/$PROJNAME/Resources/icons/icon-40@3x.png"
|
|
|
|
|
2015-01-09 19:39:04 -05:00
|
|
|
# print reminder for manual work in xcode
|
2015-01-10 06:51:43 -05:00
|
|
|
echo ""
|
|
|
|
echo "### Reminder for manual steps required for iOS release"
|
|
|
|
echo "### Change deployment target to iOS 8.1"
|
2015-01-10 07:16:03 -05:00
|
|
|
echo "### Add retina icons to build, migrate to icon set, fix splash screens config"
|