├── Example ├── JMCiBeaconManager.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── JMCiBeaconManager-Example.xcscheme │ └── xcuserdata │ │ ├── felipe.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ ├── januszchudzynski.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── jchudzynski.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── JMCiBeaconManager.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── felipe.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── januszchudzynski.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── jchudzynski.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── JMCiBeaconManager │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── JMCiBeaconManager │ │ ├── JMCiBeaconManager │ │ │ └── Classes │ │ │ │ ├── BeaconShape.swift │ │ │ │ ├── DataStructures.swift │ │ │ │ ├── JMCBeaconManager.swift │ │ │ │ ├── JMCBluetoothManager.swift │ │ │ │ ├── JMCRadarView.swift │ │ │ │ ├── PWDisplayLinker.swift │ │ │ │ ├── PWDisplayLinkerDelegate.swift │ │ │ │ └── RadarScannerShape.swift │ │ ├── License │ │ └── README.md │ ├── Local Podspecs │ │ └── JMCiBeaconManager.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── felipe.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── JMCiBeaconManager.xcscheme │ │ │ │ ├── Pods-JMCiBeaconManager_Example.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── januszchudzynski.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── JMCiBeaconManager.xcscheme │ │ │ │ ├── Pods-JMCiBeaconManager_Example.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── jchudzynski.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── JMCiBeaconManager.xcscheme │ │ │ ├── Pods-JMCiBeaconManager_Example.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── JMCiBeaconManager │ │ ├── Info.plist │ │ ├── JMCiBeaconManager-dummy.m │ │ ├── JMCiBeaconManager-prefix.pch │ │ ├── JMCiBeaconManager-umbrella.h │ │ ├── JMCiBeaconManager.modulemap │ │ └── JMCiBeaconManager.xcconfig │ │ └── Pods-JMCiBeaconManager_Example │ │ ├── Info.plist │ │ ├── Pods-JMCiBeaconManager_Example-acknowledgements.markdown │ │ ├── Pods-JMCiBeaconManager_Example-acknowledgements.plist │ │ ├── Pods-JMCiBeaconManager_Example-dummy.m │ │ ├── Pods-JMCiBeaconManager_Example-frameworks.sh │ │ ├── Pods-JMCiBeaconManager_Example-resources.sh │ │ ├── Pods-JMCiBeaconManager_Example-umbrella.h │ │ ├── Pods-JMCiBeaconManager_Example.debug.xcconfig │ │ ├── Pods-JMCiBeaconManager_Example.modulemap │ │ └── Pods-JMCiBeaconManager_Example.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── JMCiBeaconManager.podspec ├── JMCiBeaconManager ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── BeaconShape.swift │ ├── DataStructures.swift │ ├── JMCBeaconManager.swift │ ├── JMCBluetoothManager.swift │ ├── JMCRadarView.swift │ ├── PWDisplayLinker.swift │ ├── PWDisplayLinkerDelegate.swift │ └── RadarScannerShape.swift ├── License ├── NSLocationAlwaysUsageDescription.png ├── README.md ├── iPadGif.gif └── iPhoneGif.gif /Example/JMCiBeaconManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcodeproj/xcshareddata/xcschemes/JMCiBeaconManager-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/xcshareddata/xcschemes/JMCiBeaconManager-Example.xcscheme -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/xcuserdata/felipe.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/xcuserdata/felipe.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/xcuserdata/januszchudzynski.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/xcuserdata/januszchudzynski.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/xcuserdata/januszchudzynski.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/xcuserdata/januszchudzynski.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/xcuserdata/jchudzynski.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/xcuserdata/jchudzynski.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/JMCiBeaconManager.xcworkspace/xcuserdata/jchudzynski.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager.xcworkspace/xcuserdata/jchudzynski.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/AppDelegate.swift -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/Info.plist -------------------------------------------------------------------------------- /Example/JMCiBeaconManager/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/JMCiBeaconManager/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/BeaconShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/BeaconShape.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/DataStructures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/DataStructures.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCBeaconManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCBeaconManager.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCBluetoothManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCBluetoothManager.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCRadarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/JMCRadarView.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/PWDisplayLinker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/PWDisplayLinker.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/PWDisplayLinkerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/PWDisplayLinkerDelegate.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/RadarScannerShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/JMCiBeaconManager/Classes/RadarScannerShape.swift -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/License -------------------------------------------------------------------------------- /Example/Pods/JMCiBeaconManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/JMCiBeaconManager/README.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/JMCiBeaconManager.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Local Podspecs/JMCiBeaconManager.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/felipe.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/januszchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/JMCiBeaconManager.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/Pods-JMCiBeaconManager_Example.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Pods.xcodeproj/xcuserdata/jchudzynski.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/JMCiBeaconManager/JMCiBeaconManager.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Pods/Target Support Files/Pods-JMCiBeaconManager_Example/Pods-JMCiBeaconManager_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /JMCiBeaconManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager.podspec -------------------------------------------------------------------------------- /JMCiBeaconManager/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/BeaconShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/BeaconShape.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/DataStructures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/DataStructures.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/JMCBeaconManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/JMCBeaconManager.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/JMCBluetoothManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/JMCBluetoothManager.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/JMCRadarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/JMCRadarView.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/PWDisplayLinker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/PWDisplayLinker.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/PWDisplayLinkerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/PWDisplayLinkerDelegate.swift -------------------------------------------------------------------------------- /JMCiBeaconManager/Classes/RadarScannerShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/JMCiBeaconManager/Classes/RadarScannerShape.swift -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/License -------------------------------------------------------------------------------- /NSLocationAlwaysUsageDescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/NSLocationAlwaysUsageDescription.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/README.md -------------------------------------------------------------------------------- /iPadGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/iPadGif.gif -------------------------------------------------------------------------------- /iPhoneGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulfcoastdev/JMCBeaconManager/HEAD/iPhoneGif.gif --------------------------------------------------------------------------------