1 #!/bin/bash 2 # 3 # Copyright (C) 2013 The Android Open Source Project 4 # 5 # Licensed under the Apache License, Version 2.0 (the "License"); 6 # you may not use this file except in compliance with the License. 7 # You may obtain a copy of the License at 8 # 9 # http://www.apache.org/licenses/LICENSE-2.0 10 # 11 # Unless required by applicable law or agreed to in writing, software 12 # distributed under the License is distributed on an "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 # See the License for the specific language governing permissions and 15 # limitations under the License. 16 17 function makeTempJar () 18 { 19 local tempDir=/tmp 20 if [ ! -e "${tempDir}" ]; then 21 tempDir=. 22 fi 23 local tempfile="${tempDir}/mainDexClasses-$$.tmp.jar" 24 if [ -e "${tempfile}" ]; then 25 echo "Failed to create temporary file" >2 26 exit 6 27 fi 28 echo "${tempfile}" 29 } 30 31 function cleanTmp () 32 { 33 if [ -e "${tmpOut}" ] ; then 34 rm "${tmpOut}" 35 fi 36 } 37 38 39 # Set up prog to be the path of this script, including following symlinks, 40 # and set up progdir to be the fully-qualified pathname of its directory. 41 prog="$0" 42 43 while [ -h "${prog}" ]; do 44 newProg=`/bin/ls -ld "${prog}"` 45 newProg=`expr "${newProg}" : ".* -> \(.*\)$"` 46 if expr "x${newProg}" : 'x/' >/dev/null; then 47 prog="${newProg}" 48 else 49 progdir=`dirname "${prog}"` 50 prog="${progdir}/${newProg}" 51 fi 52 done 53 oldwd=`pwd` 54 progdir=`dirname "${prog}"` 55 cd "${progdir}" 56 progdir=`pwd` 57 prog="${progdir}"/`basename "${prog}"` 58 cd "${oldwd}" 59 60 baserules="${progdir}"/mainDexClasses.rules 61 if [ ! -r ${baserules} ]; then 62 echo `basename "$prog"`": can't find mainDexClasses.rules" 1>&2 63 exit 1 64 fi 65 66 jarfile=dx.jar 67 libdir="$progdir" 68 69 if [ ! -r "$libdir/$jarfile" ]; then 70 # set dx.jar location for the SDK case 71 libdir="$libdir/lib" 72 fi 73 74 75 if [ ! -r "$libdir/$jarfile" ]; then 76 # set dx.jar location for the Android tree case 77 libdir=`dirname "$progdir"`/framework 78 fi 79 80 if [ ! -r "$libdir/$jarfile" ]; then 81 echo `basename "$prog"`": can't find $jarfile" 1>&2 82 exit 1 83 fi 84 85 proguardExec="proguard.sh" 86 proguard=${PROGUARD_HOME}/bin/${proguardExec} 87 88 if [ ! -r "${proguard}" ]; then 89 # set proguard location for the SDK case 90 proguardBaseDir=`dirname "$progdir"` 91 # "${progdir}"/../.. 92 proguardBaseDir=`dirname "$proguardBaseDir"` 93 proguard="${proguardBaseDir}"/tools/proguard/bin/${proguardExec} 94 fi 95 96 if [ ! -r "${proguard}" ]; then 97 # set proguard location for the Android tree case 98 proguardBaseDir=`dirname "$proguardBaseDir"` 99 # "${progdir}"/../../../.. 100 proguardBaseDir=`dirname "$proguardBaseDir"` 101 proguard="${proguardBaseDir}"/external/proguard/bin/${proguardExec} 102 fi 103 104 if [ ! -r "${proguard}" ]; then 105 proguard="${ANDROID_BUILD_TOP}"/external/proguard/bin/${proguardExec} 106 fi 107 108 if [ ! -r "${proguard}" ]; then 109 proguard="`which proguard`" 110 fi 111 112 if [ -z "${proguard}" -o ! -r "${proguard}" ]; then 113 proguard="`which ${proguardExec}`" 114 fi 115 116 if [ -z "${proguard}" -o ! -r "${proguard}" ]; then 117 echo `basename "$prog"`": can't find ${proguardExec}" 1>&2 118 exit 1 119 fi 120 121 shrinkedAndroidJar="${SHRINKED_ANDROID_JAR}" 122 if [ -z "${shrinkedAndroidJar}" ]; then 123 shrinkedAndroidJar=shrinkedAndroid.jar 124 fi 125 126 if [ ! -r "${shrinkedAndroidJar}" ]; then 127 shrinkedAndroidJar=${libdir}/${shrinkedAndroidJar} 128 fi 129 130 if [ ! -r "${shrinkedAndroidJar}" ]; then 131 echo `basename "$prog"`": can't find shrinkedAndroid.jar" 1>&2 132 exit 1 133 fi 134 135 if [ "$OSTYPE" = "cygwin" ]; then 136 # For Cygwin, convert the jarfile path into native Windows style. 137 jarpath=`cygpath -w "$libdir/$jarfile"` 138 proguard=`cygpath -w "${proguard}"` 139 shrinkedAndroidJar=`cygpath -w "${shrinkedAndroidJar}"` 140 else 141 jarpath="$libdir/$jarfile" 142 fi 143 144 disableKeepAnnotated= 145 146 while true; do 147 if expr "x$1" : 'x--output' >/dev/null; then 148 exec 1>$2 149 shift 2 150 elif expr "x$1" : 'x--disable-annotation-resolution-workaround' >/dev/null; then 151 disableKeepAnnotated=$1 152 shift 1 153 else 154 break 155 fi 156 done 157 158 if [ $# -ne 1 ]; then 159 echo "Usage : $0 [--output <output file>] <application path>" 1>&2 160 exit 2 161 fi 162 163 tmpOut=`makeTempJar` 164 165 trap cleanTmp 0 166 167 ${proguard} -injars ${@} -dontwarn -forceprocessing -outjars ${tmpOut} \ 168 -libraryjars "${shrinkedAndroidJar}" -dontoptimize -dontobfuscate -dontpreverify \ 169 -include "${baserules}" 1>/dev/null || exit 10 170 171 java -cp "$jarpath" com.android.multidex.MainDexListBuilder ${disableKeepAnnotated} "${tmpOut}" ${@} || exit 11 172