├── .gitignore ├── JailbrokenDetector.podspec ├── JailbrokenDetector.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── JailbrokenDetector ├── JailbrokenDetector.h └── JailbrokenDetector.m ├── JailbrokenDetectorTests └── Info.plist ├── LICENSE ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /JailbrokenDetector.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetector.podspec -------------------------------------------------------------------------------- /JailbrokenDetector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /JailbrokenDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /JailbrokenDetector/JailbrokenDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetector/JailbrokenDetector.h -------------------------------------------------------------------------------- /JailbrokenDetector/JailbrokenDetector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetector/JailbrokenDetector.m -------------------------------------------------------------------------------- /JailbrokenDetectorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/JailbrokenDetectorTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phunk87/JailbrokenDetector/HEAD/README.md --------------------------------------------------------------------------------