├── FUNDING.yml ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ └── ScreenGuard.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── vprabhu.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-ScreenGuard-ScreenGuardTests.xcscheme │ │ ├── Pods-ScreenGuard.xcscheme │ │ ├── Pods-ScreenGuardDemo.xcscheme │ │ ├── ScreenGuard.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Pods-ScreenGuard-ScreenGuardTests │ ├── Pods-ScreenGuard-ScreenGuardTests-Info.plist │ ├── Pods-ScreenGuard-ScreenGuardTests-acknowledgements.markdown │ ├── Pods-ScreenGuard-ScreenGuardTests-acknowledgements.plist │ ├── Pods-ScreenGuard-ScreenGuardTests-dummy.m │ ├── Pods-ScreenGuard-ScreenGuardTests-umbrella.h │ ├── Pods-ScreenGuard-ScreenGuardTests.debug.xcconfig │ ├── Pods-ScreenGuard-ScreenGuardTests.modulemap │ └── Pods-ScreenGuard-ScreenGuardTests.release.xcconfig │ ├── Pods-ScreenGuard │ ├── Pods-ScreenGuard-Info.plist │ ├── Pods-ScreenGuard-acknowledgements.markdown │ ├── Pods-ScreenGuard-acknowledgements.plist │ ├── Pods-ScreenGuard-dummy.m │ ├── Pods-ScreenGuard-umbrella.h │ ├── Pods-ScreenGuard.debug.xcconfig │ ├── Pods-ScreenGuard.modulemap │ └── Pods-ScreenGuard.release.xcconfig │ ├── Pods-ScreenGuardDemo │ ├── Pods-ScreenGuardDemo-Info.plist │ ├── Pods-ScreenGuardDemo-acknowledgements.markdown │ ├── Pods-ScreenGuardDemo-acknowledgements.plist │ ├── Pods-ScreenGuardDemo-dummy.m │ ├── Pods-ScreenGuardDemo-frameworks-Debug-input-files.xcfilelist │ ├── Pods-ScreenGuardDemo-frameworks-Debug-output-files.xcfilelist │ ├── Pods-ScreenGuardDemo-frameworks-Release-input-files.xcfilelist │ ├── Pods-ScreenGuardDemo-frameworks-Release-output-files.xcfilelist │ ├── Pods-ScreenGuardDemo-frameworks.sh │ ├── Pods-ScreenGuardDemo-umbrella.h │ ├── Pods-ScreenGuardDemo.debug.xcconfig │ ├── Pods-ScreenGuardDemo.modulemap │ └── Pods-ScreenGuardDemo.release.xcconfig │ └── ScreenGuard │ ├── ScreenGuard-Info.plist │ ├── ScreenGuard-dummy.m │ ├── ScreenGuard-prefix.pch │ ├── ScreenGuard-umbrella.h │ ├── ScreenGuard.debug.xcconfig │ ├── ScreenGuard.modulemap │ └── ScreenGuard.release.xcconfig ├── README.md ├── ScreenGuard.podspec ├── ScreenGuard.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── vprabhu.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── vprabhu.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── ScreenGuard.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── vprabhu.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ScreenGuard ├── Info.plist ├── ScreenGuard.h └── ScreenGuardManager.swift ├── ScreenGuardDemo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift └── ScreenGuardTests ├── Info.plist └── ScreenGuardTests.swift /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Local Podspecs/ScreenGuard.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Local Podspecs/ScreenGuard.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuard-ScreenGuardTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuard-ScreenGuardTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuard.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuardDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/Pods-ScreenGuardDemo.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/ScreenGuard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/ScreenGuard.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard-ScreenGuardTests/Pods-ScreenGuard-ScreenGuardTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuard/Pods-ScreenGuard.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ScreenGuard.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ScreenGuard.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/Pods-ScreenGuardDemo/Pods-ScreenGuardDemo.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenGuard/ScreenGuard.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/Pods/Target Support Files/ScreenGuard/ScreenGuard.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/README.md -------------------------------------------------------------------------------- /ScreenGuard.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.podspec -------------------------------------------------------------------------------- /ScreenGuard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScreenGuard.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScreenGuard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ScreenGuard.xcodeproj/project.xcworkspace/xcuserdata/vprabhu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcodeproj/project.xcworkspace/xcuserdata/vprabhu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenGuard.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcodeproj/xcuserdata/vprabhu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScreenGuard.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScreenGuard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ScreenGuard.xcworkspace/xcuserdata/vprabhu.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcworkspace/xcuserdata/vprabhu.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ScreenGuard.xcworkspace/xcuserdata/vprabhu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard.xcworkspace/xcuserdata/vprabhu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ScreenGuard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard/Info.plist -------------------------------------------------------------------------------- /ScreenGuard/ScreenGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard/ScreenGuard.h -------------------------------------------------------------------------------- /ScreenGuard/ScreenGuardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuard/ScreenGuardManager.swift -------------------------------------------------------------------------------- /ScreenGuardDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ScreenGuardDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ScreenGuardDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScreenGuardDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ScreenGuardDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScreenGuardDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScreenGuardDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/Info.plist -------------------------------------------------------------------------------- /ScreenGuardDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /ScreenGuardDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardDemo/ViewController.swift -------------------------------------------------------------------------------- /ScreenGuardTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardTests/Info.plist -------------------------------------------------------------------------------- /ScreenGuardTests/ScreenGuardTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devCracker/ScreenGuard-iOS/HEAD/ScreenGuardTests/ScreenGuardTests.swift --------------------------------------------------------------------------------