Files
assistant-android/scripts/tinker_disable.sh
2017-09-15 15:24:44 +08:00

22 lines
537 B
Bash
Executable File

#!/usr/bin/env bash
# *****************************************************************************
# @author CsHeng
# @2017.9.14 init
#
# 简单禁用tinker标志位
#
#
# *****************************************************************************
# get current shell absolute dir
CWD=$(cd "$(dirname "$0")"; pwd)
GRADLE_FILE=${CWD}/../gradle.properties
echo "disable gradle file tinker vals..."
# disable tinker build
sed -i.bak "s/TINKER_ENABLE\=\(.*\)/TINKER_ENABLE\=/g" ${GRADLE_FILE}
# remove tmp files
rm ${GRADLE_FILE}.bak