├── .gitignore ├── DingTalkGPSFaker.plist ├── Makefile ├── README.md ├── Tweak.xm └── control /.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | obj 3 | *.deb 4 | .theos/ 5 | .DS_Store -------------------------------------------------------------------------------- /DingTalkGPSFaker.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buginux/DingTalkGPSFaker/HEAD/DingTalkGPSFaker.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buginux/DingTalkGPSFaker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buginux/DingTalkGPSFaker/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buginux/DingTalkGPSFaker/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buginux/DingTalkGPSFaker/HEAD/control --------------------------------------------------------------------------------