You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
493 B
14 lines
493 B
@echo off
|
|
echo Android Firmware Tool Deodex Tool
|
|
echo Useage:call %apidir%\deodex.bat DIR api_level max_memory
|
|
echo 正在确定文件列表,请稍后...
|
|
set ddir=%1
|
|
set api_level=%2
|
|
cd /d %ddir%
|
|
if exist %temp%\odex.tmp del %temp%\odex.tmp
|
|
if exist %temp%\odex2.tmp del %temp%\odex2.tmp
|
|
for /r %%f in (*.apk;*.jar) do call %apidir%\deodex_1.bat %%f >>%temp%\odex.tmp
|
|
echo 正在处理,请稍后....
|
|
for /f %%f in (%temp%\odex.tmp) do call %apidir%\deodex_it.bat "%%f"
|
|
:skip_odex
|
|
echo Deodex完毕! |