Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 499 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 499 Bytes

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.