├── .gitignore ├── EndpointSecurityDemo.xcodeproj ├── .xcodesamplecode.plist ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── EndpointSecurityDemo.xcscheme ├── EndpointSecurityDemo ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── EndpointSecurityDemo.entitlements ├── Info.plist └── main.m ├── LICENSE └── LICENSE.txt └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /EndpointSecurityDemo.xcodeproj/.xcodesamplecode.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo.xcodeproj/.xcodesamplecode.plist -------------------------------------------------------------------------------- /EndpointSecurityDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EndpointSecurityDemo.xcodeproj/xcshareddata/xcschemes/EndpointSecurityDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo.xcodeproj/xcshareddata/xcschemes/EndpointSecurityDemo.xcscheme -------------------------------------------------------------------------------- /EndpointSecurityDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /EndpointSecurityDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EndpointSecurityDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /EndpointSecurityDemo/EndpointSecurityDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/EndpointSecurityDemo.entitlements -------------------------------------------------------------------------------- /EndpointSecurityDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/Info.plist -------------------------------------------------------------------------------- /EndpointSecurityDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/EndpointSecurityDemo/main.m -------------------------------------------------------------------------------- /LICENSE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/LICENSE/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omar-Ikram/EndpointSecurityDemo/HEAD/README.md --------------------------------------------------------------------------------