├── .gitignore ├── 3developer.plist ├── LICENSE ├── Makefile ├── README.md ├── control └── src ├── Additions.h ├── DTAppInfoViewController.h ├── DTAppInfoViewController.m ├── Tweak.h └── Tweak.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/.gitignore -------------------------------------------------------------------------------- /3developer.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/3developer.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **Add https://repo.packix.com/ for flexdecrypt.** 2 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/control -------------------------------------------------------------------------------- /src/Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/src/Additions.h -------------------------------------------------------------------------------- /src/DTAppInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/src/DTAppInfoViewController.h -------------------------------------------------------------------------------- /src/DTAppInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/src/DTAppInfoViewController.m -------------------------------------------------------------------------------- /src/Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/src/Tweak.h -------------------------------------------------------------------------------- /src/Tweak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearseDev/3developer/HEAD/src/Tweak.mm --------------------------------------------------------------------------------