├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── LICENSE ├── README.md ├── baffle.jar ├── libs ├── ant.jar ├── commons-cli-1.2.jar ├── commons-io-2.4.jar ├── commons-lang3-3.1.jar └── luciad-webp-imageio.jar ├── libwebp-imageio.dylib ├── res ├── libwebp-imageio.dylib ├── mapping.map ├── out.rep └── resguard.cfg └── src └── com └── guye └── baffle ├── ant └── BaffleTask.java ├── config ├── BaffleConfig.java ├── ConfigReader.java └── MappingWriter.java ├── decoder ├── ArscData.java ├── ArscFileGenerator.java ├── MakeCsc.java └── StringBlock.java ├── exception ├── BaffleException.java ├── BaffleRuntimeException.java └── UndefinedResObject.java ├── obfuscate ├── ApkBuilder.java ├── Main.java ├── NameFactory.java ├── ObfuscateHelper.java └── Obfuscater.java ├── util ├── AntLogHandle.java ├── ApkFileUtils.java ├── ConsoleHandler.java ├── DataInputDelegate.java ├── Duo.java ├── ExtDataInput.java ├── LEDataInputStream.java ├── LEDataOutputStream.java ├── OS.java └── ZipInfo.java └── webp └── WebpIO.java /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/.DS_Store -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/README.md -------------------------------------------------------------------------------- /baffle.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/baffle.jar -------------------------------------------------------------------------------- /libs/ant.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libs/ant.jar -------------------------------------------------------------------------------- /libs/commons-cli-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libs/commons-cli-1.2.jar -------------------------------------------------------------------------------- /libs/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libs/commons-io-2.4.jar -------------------------------------------------------------------------------- /libs/commons-lang3-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libs/commons-lang3-3.1.jar -------------------------------------------------------------------------------- /libs/luciad-webp-imageio.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libs/luciad-webp-imageio.jar -------------------------------------------------------------------------------- /libwebp-imageio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/libwebp-imageio.dylib -------------------------------------------------------------------------------- /res/libwebp-imageio.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/res/libwebp-imageio.dylib -------------------------------------------------------------------------------- /res/mapping.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/res/mapping.map -------------------------------------------------------------------------------- /res/out.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/res/out.rep -------------------------------------------------------------------------------- /res/resguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/res/resguard.cfg -------------------------------------------------------------------------------- /src/com/guye/baffle/ant/BaffleTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/ant/BaffleTask.java -------------------------------------------------------------------------------- /src/com/guye/baffle/config/BaffleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/config/BaffleConfig.java -------------------------------------------------------------------------------- /src/com/guye/baffle/config/ConfigReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/config/ConfigReader.java -------------------------------------------------------------------------------- /src/com/guye/baffle/config/MappingWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/config/MappingWriter.java -------------------------------------------------------------------------------- /src/com/guye/baffle/decoder/ArscData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/decoder/ArscData.java -------------------------------------------------------------------------------- /src/com/guye/baffle/decoder/ArscFileGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/decoder/ArscFileGenerator.java -------------------------------------------------------------------------------- /src/com/guye/baffle/decoder/MakeCsc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/decoder/MakeCsc.java -------------------------------------------------------------------------------- /src/com/guye/baffle/decoder/StringBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/decoder/StringBlock.java -------------------------------------------------------------------------------- /src/com/guye/baffle/exception/BaffleException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/exception/BaffleException.java -------------------------------------------------------------------------------- /src/com/guye/baffle/exception/BaffleRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/exception/BaffleRuntimeException.java -------------------------------------------------------------------------------- /src/com/guye/baffle/exception/UndefinedResObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/exception/UndefinedResObject.java -------------------------------------------------------------------------------- /src/com/guye/baffle/obfuscate/ApkBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/obfuscate/ApkBuilder.java -------------------------------------------------------------------------------- /src/com/guye/baffle/obfuscate/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/obfuscate/Main.java -------------------------------------------------------------------------------- /src/com/guye/baffle/obfuscate/NameFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/obfuscate/NameFactory.java -------------------------------------------------------------------------------- /src/com/guye/baffle/obfuscate/ObfuscateHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/obfuscate/ObfuscateHelper.java -------------------------------------------------------------------------------- /src/com/guye/baffle/obfuscate/Obfuscater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/obfuscate/Obfuscater.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/AntLogHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/AntLogHandle.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/ApkFileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/ApkFileUtils.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/ConsoleHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/ConsoleHandler.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/DataInputDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/DataInputDelegate.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/Duo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/Duo.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/ExtDataInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/ExtDataInput.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/LEDataInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/LEDataInputStream.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/LEDataOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/LEDataOutputStream.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/OS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/OS.java -------------------------------------------------------------------------------- /src/com/guye/baffle/util/ZipInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/util/ZipInfo.java -------------------------------------------------------------------------------- /src/com/guye/baffle/webp/WebpIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker535/Baffle/HEAD/src/com/guye/baffle/webp/WebpIO.java --------------------------------------------------------------------------------