├── LICENSE ├── MGSpoof.plist ├── Makefile ├── README.md ├── Tweak.xm ├── control └── mgspoofhelper ├── MGAppPickerController.h ├── MGAppPickerController.m ├── MGKeyPickerController.h ├── MGKeyPickerController.m ├── MGSpoofHelperAppDelegate.h ├── MGSpoofHelperAppDelegate.m ├── MGSpoofHelperPrefs.h ├── MGSpoofHelperPrefs.m ├── MGSpoofHelperRootViewController.h ├── MGSpoofHelperRootViewController.m ├── Makefile ├── Resources ├── AppIcon29x29.png ├── AppIcon29x29@2x.png ├── AppIcon29x29@3x.png ├── AppIcon40x40.png ├── AppIcon40x40@2x.png ├── AppIcon40x40@3x.png ├── AppIcon50x50.png ├── AppIcon50x50@2x.png ├── AppIcon57x57.png ├── AppIcon57x57@2x.png ├── AppIcon57x57@3x.png ├── AppIcon60x60.png ├── AppIcon60x60@2x.png ├── AppIcon60x60@3x.png ├── AppIcon72x72.png ├── AppIcon72x72@2x.png ├── AppIcon76x76.png ├── AppIcon76x76@2x.png ├── Info.plist ├── LaunchImage-700-568h@2x.png ├── LaunchImage-700-Landscape@2x~ipad.png ├── LaunchImage-700-Landscape~ipad.png ├── LaunchImage-700-Portrait@2x~ipad.png ├── LaunchImage-700-Portrait~ipad.png ├── LaunchImage-800-667h@2x.png ├── LaunchImage-800-Landscape-736h@3x.png ├── LaunchImage-800-Portrait-736h@3x.png ├── LaunchImage.png └── LaunchImage@2x.png ├── ent.xml └── main.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/LICENSE -------------------------------------------------------------------------------- /MGSpoof.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/MGSpoof.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/control -------------------------------------------------------------------------------- /mgspoofhelper/MGAppPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGAppPickerController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGAppPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGAppPickerController.m -------------------------------------------------------------------------------- /mgspoofhelper/MGKeyPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGKeyPickerController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGKeyPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGKeyPickerController.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperAppDelegate.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperAppDelegate.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperPrefs.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperPrefs.m -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperRootViewController.h -------------------------------------------------------------------------------- /mgspoofhelper/MGSpoofHelperRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/MGSpoofHelperRootViewController.m -------------------------------------------------------------------------------- /mgspoofhelper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/Makefile -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon50x50.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon50x50@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon57x57@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon72x72.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon72x72@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon76x76.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/Resources/Info.plist -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Landscape~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-Landscape-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/Resources/LaunchImage@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgspoofhelper/ent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/ent.xml -------------------------------------------------------------------------------- /mgspoofhelper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyk7/MGSpoof/HEAD/mgspoofhelper/main.m --------------------------------------------------------------------------------