├── .gitignore ├── LICENSE ├── LocationNotifier.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── LocationNotifier.xcscheme ├── LocationNotifier ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LocationNotificationScheduler │ ├── LocationNotificationInfo.swift │ ├── LocationNotificationScheduler.swift │ └── LocationNotificationSchedulerDelegate.swift └── ViewController.swift ├── LocationNotifierTests ├── Info.plist └── LocationNotifierTests.swift ├── LocationNotifierUITests ├── Info.plist └── LocationNotifierUITests.swift ├── README.md └── images └── lock_screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LICENSE -------------------------------------------------------------------------------- /LocationNotifier.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LocationNotifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LocationNotifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LocationNotifier.xcodeproj/xcshareddata/xcschemes/LocationNotifier.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier.xcodeproj/xcshareddata/xcschemes/LocationNotifier.xcscheme -------------------------------------------------------------------------------- /LocationNotifier/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/AppDelegate.swift -------------------------------------------------------------------------------- /LocationNotifier/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LocationNotifier/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LocationNotifier/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LocationNotifier/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LocationNotifier/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/Info.plist -------------------------------------------------------------------------------- /LocationNotifier/LocationNotificationScheduler/LocationNotificationInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/LocationNotificationScheduler/LocationNotificationInfo.swift -------------------------------------------------------------------------------- /LocationNotifier/LocationNotificationScheduler/LocationNotificationScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/LocationNotificationScheduler/LocationNotificationScheduler.swift -------------------------------------------------------------------------------- /LocationNotifier/LocationNotificationScheduler/LocationNotificationSchedulerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/LocationNotificationScheduler/LocationNotificationSchedulerDelegate.swift -------------------------------------------------------------------------------- /LocationNotifier/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifier/ViewController.swift -------------------------------------------------------------------------------- /LocationNotifierTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifierTests/Info.plist -------------------------------------------------------------------------------- /LocationNotifierTests/LocationNotifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifierTests/LocationNotifierTests.swift -------------------------------------------------------------------------------- /LocationNotifierUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifierUITests/Info.plist -------------------------------------------------------------------------------- /LocationNotifierUITests/LocationNotifierUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/LocationNotifierUITests/LocationNotifierUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/README.md -------------------------------------------------------------------------------- /images/lock_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgsamudio/LocationNotifier/HEAD/images/lock_screen.png --------------------------------------------------------------------------------