imkiwa / AndroidApktool

Apktool runs on android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AndroidApktool

Apktool runs on android.

How to

  1. first, add following lines to you custom Application's onCreate() method.
public class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        AndroidApktool.initAndroid(this);
    }
}
  1. let's run apktool by:
AndroidApktool.run(new String[] { "d", apkPath, "-f", outputPath });

License

Copyright 2017 Kiva kiva515@foxmail.com

Code released under the MIT License.

About

Apktool runs on android.

License:MIT License


Languages

Language:Java 100.0%