c557d07d8d
aapt's -0 option is for extensions only, not directories, and PinyinIME needs .dat to be excluded. Nothing else in CM7 uses a .dat file, so this shouldn't increase the .apk size more than is needed. Also adding .dict, which isn't strictly required, but LatinIME wants it. Nothing in CM7 but LatinIME uses .dict. Change-Id: I7ce1b2cbc2b32c734978488aac2f4f6c43562cc1
126 lines
3.3 KiB
Bash
Executable File
126 lines
3.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Super-mega opticharger of doom
|
|
# Shrinks apks by running pngcrush on png images
|
|
#
|
|
# Point APKCERTS at the full path to a generated apkcerts.txt file, such as:
|
|
# /home/shade/dev/sources/android-cm-eclair/out/target/product/dream_sapphire/obj/PACKAGING/target_files_intermediates/cyanogen_dream_sapphire-target_files-eng.shade/META/apkcerts.txt
|
|
#
|
|
# cyanogen - shade@chemlab.org
|
|
# ChrisSoyars - me@ctso.me
|
|
|
|
OUT_TARGET_HOST=$(uname -a | grep Darwin)
|
|
if [ -z "$OUT_TARGET_HOST" ]
|
|
then
|
|
OUT_TARGET_HOST=linux-x86
|
|
else
|
|
OUT_TARGET_HOST=darwin-x86
|
|
fi
|
|
|
|
set -e
|
|
QUIET=1
|
|
QFLAG=-q
|
|
BASE=`pwd`
|
|
TMPDIR=/tmp/opticharge-$$
|
|
|
|
if [ "$APKCERTS" = "" ];
|
|
then
|
|
APKCERTS=$OUT/obj/PACKAGING/target_files_intermediates/$TARGET_PRODUCT-target_files-$TARGET_BUILD_VARIANT.$LOGNAME/META/apkcerts.txt
|
|
if [ ! -f "$APKCERTS" ];
|
|
then
|
|
echo "Set APKCERTS to the path to your apkcerts.txt file"
|
|
exit 1;
|
|
fi
|
|
fi
|
|
|
|
if [ ! -f "$APKCERTS" ];
|
|
then
|
|
echo "Invalid path to apkcerts.txt, set APKCERTS to the correct path."
|
|
fi
|
|
|
|
if [ "`which pngcrush`" = "" ];
|
|
then
|
|
echo "Please install pngcrush"
|
|
exit 1;
|
|
fi
|
|
|
|
if [ "`which aapt`" = "" ];
|
|
then
|
|
echo "Please ensure aapt is in your \$PATH"
|
|
exit 1;
|
|
fi
|
|
|
|
if [ "`which zipalign`" = "" ];
|
|
then
|
|
echo "Please ensure zipalign is in your \$PATH"
|
|
exit 1;
|
|
fi
|
|
|
|
if [ -e "$1" ];
|
|
then
|
|
NAME=`basename $1`;
|
|
echo "Optimizing $NAME...";
|
|
|
|
if [ "$2" != "" ];
|
|
then
|
|
CERT=build/target/product/security/$2.x509.pem
|
|
KEY=build/target/product/security/$2.pk8
|
|
if [ ! -f "$ANDROID_BUILD_TOP/$CERT" ];
|
|
then
|
|
echo "$CERT does not exist!";
|
|
exit 1;
|
|
fi
|
|
else
|
|
APKINFO=`grep "name=\"$NAME\"" $APKCERTS`;
|
|
[ $QUIET ] || echo "APKINFO: $APKINFO";
|
|
if [ "$APKINFO" = "" ];
|
|
then
|
|
echo "No apk info for $NAME";
|
|
exit 1;
|
|
fi
|
|
CERT=`echo $APKINFO | awk {'print $2'} | cut -f 2 -d "=" | tr -d "\""`;
|
|
KEY=`echo $APKINFO | awk {'print $3'} | cut -f 2 -d "=" | tr -d "\""`;
|
|
if [ "$CERT" = "" ];
|
|
then
|
|
echo "Unable to find certificate for $NAME"
|
|
exit 1;
|
|
fi
|
|
fi
|
|
|
|
[ $QUIET ] || echo "Certificate: $CERT";
|
|
|
|
[ -d $TMPDIR/$NAME ] && rm -rf $TMPDIR/$NAME
|
|
mkdir -p $TMPDIR/$NAME
|
|
trap "rm -rf $TMPDIR; exit" INT TERM EXIT
|
|
cd $TMPDIR/$NAME
|
|
unzip -q $BASE/$1
|
|
for x in `find . -name "*.png" | grep -v "\.9.png$" | tr "\n" " "`
|
|
do
|
|
[ $QUIET ] || echo "Crushing $x"
|
|
pngcrush $QFLAG $x $x.crushed 1>/dev/null
|
|
if [ -e "$x.crushed" ];
|
|
then
|
|
mv $x.crushed $x
|
|
fi
|
|
done
|
|
cp $BASE/$1 $BASE/$1.old
|
|
|
|
[ $QUIET ] || echo "Repacking apk.."
|
|
aapt p -0 .dat -0 .dict -F $NAME .
|
|
|
|
[ $QUIET ] || echo "Resigning with cert: `echo $CERT`"
|
|
|
|
[ $QUIET ] || echo java -jar $ANDROID_BUILD_TOP/out/host/$OUT_TARGET_HOST/framework/signapk.jar $ANDROID_BUILD_TOP/$CERT $ANDROID_BUILD_TOP/$KEY $NAME signed_$NAME
|
|
java -jar $ANDROID_BUILD_TOP/out/host/$OUT_TARGET_HOST/framework/signapk.jar $ANDROID_BUILD_TOP/$CERT $ANDROID_BUILD_TOP/$KEY $NAME signed_$NAME
|
|
[ $QUIET ] || echo "Zipalign.."
|
|
zipalign -f 4 signed_$NAME $BASE/$1
|
|
if [ ! $QUIET ]; then
|
|
ls -l $BASE/$1.old
|
|
ls -l $BASE/$1
|
|
fi
|
|
rm $BASE/$1.old
|
|
else
|
|
echo "Usage: $0 [apk file]"
|
|
fi
|
|
|