Android run script tools for debugging system apps or frameworks. This was used by myself when debugging system apps or frameworks. In this project, module names was not given to avoid the project name, but the main structure was reminded.
#/bin/bash #clear echo "" echo -e "\e[31;42mOops! Please give me the \e[0m\e[1;5;40;31mcorrect\e[0m\e[31;42m parameters!!!\e[0m" echo ""
params="" cnt=1; for i in $@; do if [ $cnt != 1 ]; then params=$params",\e[1;5;31;40m "$i" \e[0m" else params="\e[1;5;31;40m "$i" \e[0m" fi cnt=$(($cnt+1)) done if [ $cnt == 1 ]; then params="\e[4;31mNONE\e[0m" fi echo -e "\e[33mavaliable parameters are :\e[0m" $params"\n"
OP_INDEX=$1 PROJECT_SRC_DIR=$2 APP_SRC_DIR=$3 APP_OUT_DIR=$4 APP_REMOTE_DIR=$5 APP_PKG_NAME=$6 PROJECT_LUNCH_IDX=$7 #for i in$@; do #statements #echo$i #done # for compile SnapCamera APK in #if [ -f /tmp/btoollog ]; then #echo"exist" #else #echo"/tmp/btoollog not exists" #mkdir /tmp/btoollog #fi
function compileModifiedSourceCode(){ ${UTILS_DIR}/printOperationTip.sh "<Prepare to Compile>" cd ${PROJECT_SRC_DIR} pwd source build/envsetup.sh lunch ${PROJECT_LUNCH_IDX} cd ${APP_SRC_DIR} pwd mm }
function makeSureCloseCompletelyAndReopen(){ ${UTILS_DIR}/printOperationTip.sh "<Prepare to force-stop APK>"
echo -e "\n\e[32m\ttry to stop app\e[0m" adb shell am force-stop ${APP_PKG_NAME} echo -e ""
echo -e "\n\e[32m\ttry to start app\e[0m" adb shell am start -n ${APP_PKG_NAME} echo -e "" }
function pushCompiledAPK2Phone(){ ${UTILS_DIR}/printOperationTip.sh "<Prepare to Push APK>" cd ${APP_OUT_DIR} #pwd #echo"${APP_OUT_DIR}" adb push . ${APP_REMOTE_DIR} #adb push oat/arm64/$appname.odex /system/priv-app/$appname/oat/arm64/$appname.odex if [ $? -eq 0 ]; then echo -e "\n\e[32m\tpush app to phone successfully\e[0m" fi echo -e "" }
function checkPushedFilesStatus(){ ${UTILS_DIR}/printOperationTip.sh "<Prepare to Check Push Result>" adb shell ls -l ${APP_REMOTE_DIR} ${APP_REMOTE_DIR}/oat/arm64/ if [ $? -eq 0 ]; then echo -e "\n\e[32m\tconnect to phone successfully\e[0m" fi echo -e "" }