├── .idea ├── artifacts │ └── Apktool_GUI_jar.xml ├── compiler.xml ├── description.html ├── encodings.xml ├── gradle.xml ├── libraries │ └── apktool_cli_all.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── ApktoolFX.iml ├── README.md ├── img ├── ss1.png └── ss2.png ├── lib └── apktool-cli-all.jar ├── out ├── artifacts │ └── Apktool_GUI_jar │ │ └── Apktool_GUI.jar └── production │ ├── ApktoolFX │ ├── META-INF │ │ └── MANIFEST.MF │ ├── com │ │ └── bittle │ │ │ └── apktoolfx │ │ │ ├── LOGGER.class │ │ │ ├── Main.class │ │ │ ├── MainFXML.fxml │ │ │ ├── controllers │ │ │ ├── CompileController$1.class │ │ │ ├── CompileController.class │ │ │ ├── Controller.class │ │ │ ├── DecompileController$1.class │ │ │ └── DecompileController.class │ │ │ └── fxml │ │ │ ├── CompileTabPage.fxml │ │ │ └── DecompileTabPage.fxml │ └── styles │ │ ├── MaterialFxTester.fxml │ │ ├── material.css │ │ ├── materialfx-toggleswitch.css │ │ └── materialfx-toggleswitch.fxml │ └── Apktool_GUI │ ├── META-INF │ └── MANIFEST.MF │ ├── com │ └── bittle │ │ └── apktoolfx │ │ ├── LOGGER.class │ │ ├── Main.class │ │ ├── MainFXML.fxml │ │ ├── controllers │ │ ├── CompileController$1.class │ │ ├── CompileController.class │ │ ├── Controller.class │ │ ├── DecompileController$1.class │ │ └── DecompileController.class │ │ └── fxml │ │ ├── CompileTabPage.fxml │ │ └── DecompileTabPage.fxml │ └── styles │ ├── MaterialFxTester.fxml │ ├── material.css │ ├── materialfx-toggleswitch.css │ └── materialfx-toggleswitch.fxml └── src ├── META-INF └── MANIFEST.MF ├── com └── bittle │ └── apktoolfx │ ├── LOGGER.java │ ├── Main.java │ ├── MainFXML.fxml │ ├── controllers │ ├── CompileController.java │ ├── Controller.java │ └── DecompileController.java │ └── fxml │ ├── CompileTabPage.fxml │ └── DecompileTabPage.fxml └── styles └── material.css /.idea/artifacts/Apktool_GUI_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/artifacts/Apktool_GUI_jar.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/description.html -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/apktool_cli_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/libraries/apktool_cli_all.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /ApktoolFX.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/ApktoolFX.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/README.md -------------------------------------------------------------------------------- /img/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/img/ss1.png -------------------------------------------------------------------------------- /img/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/img/ss2.png -------------------------------------------------------------------------------- /lib/apktool-cli-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/lib/apktool-cli-all.jar -------------------------------------------------------------------------------- /out/artifacts/Apktool_GUI_jar/Apktool_GUI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/artifacts/Apktool_GUI_jar/Apktool_GUI.jar -------------------------------------------------------------------------------- /out/production/ApktoolFX/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.bittle.apktoolfx.Main 3 | 4 | -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/LOGGER.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/LOGGER.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/Main.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/MainFXML.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/MainFXML.fxml -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/controllers/CompileController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/controllers/CompileController$1.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/controllers/CompileController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/controllers/CompileController.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/controllers/Controller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/controllers/Controller.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/controllers/DecompileController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/controllers/DecompileController$1.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/controllers/DecompileController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/controllers/DecompileController.class -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/fxml/CompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/fxml/CompileTabPage.fxml -------------------------------------------------------------------------------- /out/production/ApktoolFX/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml -------------------------------------------------------------------------------- /out/production/ApktoolFX/styles/MaterialFxTester.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/styles/MaterialFxTester.fxml -------------------------------------------------------------------------------- /out/production/ApktoolFX/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/styles/material.css -------------------------------------------------------------------------------- /out/production/ApktoolFX/styles/materialfx-toggleswitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/styles/materialfx-toggleswitch.css -------------------------------------------------------------------------------- /out/production/ApktoolFX/styles/materialfx-toggleswitch.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/ApktoolFX/styles/materialfx-toggleswitch.fxml -------------------------------------------------------------------------------- /out/production/Apktool_GUI/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.bittle.apktoolfx.Main 3 | 4 | -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/LOGGER.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/LOGGER.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/Main.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/MainFXML.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/MainFXML.fxml -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/CompileController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/CompileController$1.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/CompileController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/CompileController.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/Controller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/Controller.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/DecompileController$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/DecompileController$1.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/DecompileController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/controllers/DecompileController.class -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/fxml/CompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/fxml/CompileTabPage.fxml -------------------------------------------------------------------------------- /out/production/Apktool_GUI/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml -------------------------------------------------------------------------------- /out/production/Apktool_GUI/styles/MaterialFxTester.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/styles/MaterialFxTester.fxml -------------------------------------------------------------------------------- /out/production/Apktool_GUI/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/styles/material.css -------------------------------------------------------------------------------- /out/production/Apktool_GUI/styles/materialfx-toggleswitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/styles/materialfx-toggleswitch.css -------------------------------------------------------------------------------- /out/production/Apktool_GUI/styles/materialfx-toggleswitch.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/out/production/Apktool_GUI/styles/materialfx-toggleswitch.fxml -------------------------------------------------------------------------------- /src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.bittle.apktoolfx.Main 3 | 4 | -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/LOGGER.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/LOGGER.java -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/Main.java -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/MainFXML.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/MainFXML.fxml -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/controllers/CompileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/controllers/CompileController.java -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/controllers/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/controllers/Controller.java -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/controllers/DecompileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/controllers/DecompileController.java -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/fxml/CompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/fxml/CompileTabPage.fxml -------------------------------------------------------------------------------- /src/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/com/bittle/apktoolfx/fxml/DecompileTabPage.fxml -------------------------------------------------------------------------------- /src/styles/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscar0812/ApktoolFX/HEAD/src/styles/material.css --------------------------------------------------------------------------------