apkbuilder 找不到的问题

来源:互联网 发布:淘宝雷锋侠 编辑:程序博客网 时间:2024/04/29 02:56

THIS TOOL IS DEPRECATED and may stop working at any time! current just the batch or bash script be removed

you can just create a new apkbuilder file in android-sdk-linux/tools dir by:

windows:

copy android.bat apkbuilder.bat   modify apkbuilder.bat: change com.android.sdkmanager.Main to com.android.sdklib.build.ApkBuilderMain

Linux:

 cat android | sed -e 's/com.android.sdkmanager.Main/com.android.sdklib.build.ApkBuilderMain/g' > apkbuilder  chmod a+x apkbuilder

ps:来至stack overflow lorbot的回答

0 0