Commit c40bfa73 by sikang

update builder script

parent e81ddf58
......@@ -16,19 +16,19 @@ init(){
#api混淆
if [[ -e "script/api_mapping" ]]; then
cd code
chmod a+x rename_api.py
./rename_api.py
./rename_api.py || { echo "rename_api error!"; exit 1; }
cd ..
fi
./sdk_manager.py 'close' 'NOLOG' || { echo "sdk_manager error!"; exit 1; }
cd garble
#字符串混淆
chmod a+x string_decrypt.py
python string_decrypt.py
python string_decrypt.py || { echo "string_decrypt error!"; exit 1; }
#四大组件混淆
./rename_project.sh
./rename_project.sh || { echo "rename_project error!"; exit 1; }
#代码结构混淆
./insert.py
./insert.py || { echo "insert_code error!"; exit 1; }
cd ../../../
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment