├── .gitignore ├── LICENSE ├── README.md ├── Tweak ├── .theos │ ├── _ │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── WeChatFakeLocation.dylib │ │ │ └── WeChatFakeLocation.plist │ ├── build_session │ ├── fakeroot │ ├── last_package │ ├── obj │ │ └── debug │ │ │ ├── .stamp │ │ │ ├── WeChatFakeLocation.dylib │ │ │ ├── arm64 │ │ │ ├── FakeWeChatLocationManager.m.2771938d.o │ │ │ ├── Tweak.xm.2771938d.o │ │ │ └── WeChatFakeLocation.dylib │ │ │ └── armv7 │ │ │ ├── FakeWeChatLocationManager.m.f5ce7d45.o │ │ │ ├── Tweak.xm.f5ce7d45.o │ │ │ └── WeChatFakeLocation.dylib │ └── packages │ │ └── pandara.wechatfakelocation-0.0.1 ├── FakeWeChatLocationManager.h ├── FakeWeChatLocationManager.m ├── Makefile ├── Tweak.xm ├── WeChatFakeLocation.plist ├── control └── packages │ ├── pandara.wechatfakelocation_0.0.1-2+debug_iphoneos-arm.deb │ ├── pandara.wechatfakelocation_0.0.1-3+debug_iphoneos-arm.deb │ └── pandara.wechatfakelocation_0.0.1-4+debug_iphoneos-arm.deb └── images ├── 47304IMG_0010.PNG ├── 5566IMG_0009.PNG └── 79259IMG_0008.PNG /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/README.md -------------------------------------------------------------------------------- /Tweak/.theos/_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/_/DEBIAN/control -------------------------------------------------------------------------------- /Tweak/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatFakeLocation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatFakeLocation.dylib -------------------------------------------------------------------------------- /Tweak/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatFakeLocation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/_/Library/MobileSubstrate/DynamicLibraries/WeChatFakeLocation.plist -------------------------------------------------------------------------------- /Tweak/.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tweak/.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tweak/.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/last_package -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/WeChatFakeLocation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/WeChatFakeLocation.dylib -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/arm64/FakeWeChatLocationManager.m.2771938d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/arm64/FakeWeChatLocationManager.m.2771938d.o -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/arm64/Tweak.xm.2771938d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/arm64/Tweak.xm.2771938d.o -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/arm64/WeChatFakeLocation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/arm64/WeChatFakeLocation.dylib -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/armv7/FakeWeChatLocationManager.m.f5ce7d45.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/armv7/FakeWeChatLocationManager.m.f5ce7d45.o -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/armv7/Tweak.xm.f5ce7d45.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/armv7/Tweak.xm.f5ce7d45.o -------------------------------------------------------------------------------- /Tweak/.theos/obj/debug/armv7/WeChatFakeLocation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/.theos/obj/debug/armv7/WeChatFakeLocation.dylib -------------------------------------------------------------------------------- /Tweak/.theos/packages/pandara.wechatfakelocation-0.0.1: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /Tweak/FakeWeChatLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/FakeWeChatLocationManager.h -------------------------------------------------------------------------------- /Tweak/FakeWeChatLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/FakeWeChatLocationManager.m -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/Tweak.xm -------------------------------------------------------------------------------- /Tweak/WeChatFakeLocation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/WeChatFakeLocation.plist -------------------------------------------------------------------------------- /Tweak/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/control -------------------------------------------------------------------------------- /Tweak/packages/pandara.wechatfakelocation_0.0.1-2+debug_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/packages/pandara.wechatfakelocation_0.0.1-2+debug_iphoneos-arm.deb -------------------------------------------------------------------------------- /Tweak/packages/pandara.wechatfakelocation_0.0.1-3+debug_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/packages/pandara.wechatfakelocation_0.0.1-3+debug_iphoneos-arm.deb -------------------------------------------------------------------------------- /Tweak/packages/pandara.wechatfakelocation_0.0.1-4+debug_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/Tweak/packages/pandara.wechatfakelocation_0.0.1-4+debug_iphoneos-arm.deb -------------------------------------------------------------------------------- /images/47304IMG_0010.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/images/47304IMG_0010.PNG -------------------------------------------------------------------------------- /images/5566IMG_0009.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/images/5566IMG_0009.PNG -------------------------------------------------------------------------------- /images/79259IMG_0008.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PandaraWen/FakeWeChatLocation/HEAD/images/79259IMG_0008.PNG --------------------------------------------------------------------------------