├── .gitignore ├── .swiftlint.yml ├── BatteryNotifier Widget ├── Base.lproj │ ├── ListRowViewController.xib │ └── TodayViewController.xib ├── BatteryNotifier_Widget.entitlements ├── Info.plist ├── ListRowViewController.swift ├── TodayViewController.swift └── en.lproj │ └── InfoPlist.strings ├── BatteryNotifier.entitlements ├── LICENSE ├── README.rst ├── Resources ├── BatteryNotifier.zip └── screenshot.png ├── SDMMobileDevice.framework ├── Headers ├── Modules ├── PrivateHeaders ├── Resources ├── SDMMobileDevice └── Versions │ ├── A │ ├── Headers │ │ ├── CFRuntime.h │ │ ├── CFTypeAddition.h │ │ ├── SDMMD_AFCConnection_Class.h │ │ ├── SDMMD_AFCOperation_Class.h │ │ ├── SDMMD_AFC_Types.h │ │ ├── SDMMD_AMAuthInstall.h │ │ ├── SDMMD_AMAuthInstallApImg3.h │ │ ├── SDMMD_AMAuthInstallApImg4.h │ │ ├── SDMMD_AMAuthInstallMonet.h │ │ ├── SDMMD_AMDevice.h │ │ ├── SDMMD_AMDevice_Class.h │ │ ├── SDMMD_AppleFileConduit.h │ │ ├── SDMMD_Applications.h │ │ ├── SDMMD_Connection.h │ │ ├── SDMMD_Connection_Class.h │ │ ├── SDMMD_Debugger.h │ │ ├── SDMMD_Error.h │ │ ├── SDMMD_FileRelay.h │ │ ├── SDMMD_Functions.h │ │ ├── SDMMD_Initialize.h │ │ ├── SDMMD_Keys.h │ │ ├── SDMMD_MCP.h │ │ ├── SDMMD_MCP_Class.h │ │ ├── SDMMD_MobileBackup2.h │ │ ├── SDMMD_MobileConfig.h │ │ ├── SDMMD_Notification.h │ │ ├── SDMMD_SSL_Functions.h │ │ ├── SDMMD_Service.h │ │ ├── SDMMD_Types.h │ │ ├── SDMMD_USBMuxListener.h │ │ ├── SDMMD_USBMuxListener_Class.h │ │ ├── SDMMD_USBMuxListener_Types.h │ │ ├── SDMMD_USBMux_Protocol.h │ │ ├── SDMMD_pcap.h │ │ └── SDMMobileDevice.h │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ ├── SDMMD_AFCConnection_Internal.h │ │ ├── SDMMD_AFCOperation_Internal.h │ │ ├── SDMMD_AMDevice_Internal.h │ │ ├── SDMMD_Classes.h │ │ ├── SDMMD_Connection_Internal.h │ │ ├── SDMMD_Connection_Private.h │ │ ├── SDMMD_Debugger_Internal.h │ │ ├── SDMMD_MCP_Internal.h │ │ ├── SDMMD_MDFUModeDevice.h │ │ ├── SDMMD_MRUSBDevice.h │ │ ├── SDMMD_MRecoveryModeDevice.h │ │ ├── SDMMD_MRestorableDevice.h │ │ ├── SDMMD_MRestoreModeDevice.h │ │ ├── SDMMD_USBMuxListener_Internal.h │ │ ├── SDMTranslation.h │ │ └── SDMTypeTranslation.h │ ├── Resources │ │ ├── Certs │ │ │ ├── Img4Ticket8960Cert.crt │ │ │ ├── Img4Ticket8960DevCert.crt │ │ │ ├── Img4Ticket8960UnfusedCert.crt │ │ │ ├── Img4TicketCACert.crt │ │ │ ├── Img4TicketDevPrivateKey.pem │ │ │ ├── Img4TicketPrivateKey.pem │ │ │ ├── Img4TicketUnfusedPrivateKey.pem │ │ │ ├── MonetAttestationCACert.crt │ │ │ ├── MonetAttestationDblCert.crt │ │ │ ├── MonetAttestationDblCertPrivateKey.pem │ │ │ ├── MonetAttestationENandprogCert.crt │ │ │ ├── MonetAttestationENandprogCertPrivateKey.pem │ │ │ ├── MonetRootCACert.crt │ │ │ ├── MonetTicketActivationPrivateKey.pem │ │ │ ├── MonetTicketCalibrationPrivateKey.pem │ │ │ ├── MonetTicketProvisioningA1PublicKey.pem │ │ │ ├── MonetTicketProvisioningA2PublicKey.pem │ │ │ ├── MonetTicketProvisioningC1PublicKey.pem │ │ │ ├── MonetTicketProvisioningC2PublicKey.pem │ │ │ ├── MonetTicketProvisioningP1PublicKey.pem │ │ │ ├── MonetTicketProvisioningP2PublicKey.pem │ │ │ ├── MonetTicketProvisioningPrivateKey.pem │ │ │ └── MonetTicketRootPrivateKey.pem │ │ ├── Info.plist │ │ └── SDMMobileDevice.entitlements │ ├── SDMMobileDevice │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── iOS Battery Notifier.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── BatteryNotifier Widget.xcscheme │ └── BatteryNotifier.xcscheme └── iOS Battery Notifier ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── BatteryNotifier_128x128@2x.png │ ├── BatteryNotifier_256x256.png │ ├── BatteryNotifier_256x256@2x.png │ ├── BatteryNotifier_512x512.png │ ├── BatteryNotifier_512x512@2x.png │ └── Contents.json ├── Contents.json ├── iPad.imageset │ ├── Contents.json │ └── ipad-portrait.png ├── iPhone.imageset │ ├── Contents.json │ └── iphone.png └── lowBattery.imageset │ ├── Contents.json │ ├── lowBattery128x128.png │ └── lowBattery256x256.png ├── Base.lproj └── Main.storyboard ├── BatteryView.swift ├── BatteryViewController.swift ├── Config └── ConfigKey.swift ├── DarwinNotificationsManager.h ├── DarwinNotificationsManager.m ├── DeviceMenuItem.swift ├── Extensions ├── Cocoa │ └── NSStoryboard.swift └── Foundation │ ├── Notification.swift │ └── UserDefaults.swift ├── Info.plist ├── Models ├── Device │ └── Device.swift ├── DeviceService.swift ├── SDMMobileDeviceService.h ├── SDMMobileDeviceService.m ├── SDMMobileDeviceService.swift └── Weak.swift ├── NotifierMenu.swift ├── PreferencesController.swift ├── Services ├── DeviceManager.swift ├── DeviceStore.swift └── NotificationsHandler.swift ├── StatusItemController.swift ├── Storyboard └── MainStoryboard.swift └── iOS Battery Notifier-Bridging-Header.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /BatteryNotifier Widget/Base.lproj/ListRowViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/Base.lproj/ListRowViewController.xib -------------------------------------------------------------------------------- /BatteryNotifier Widget/Base.lproj/TodayViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/Base.lproj/TodayViewController.xib -------------------------------------------------------------------------------- /BatteryNotifier Widget/BatteryNotifier_Widget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/BatteryNotifier_Widget.entitlements -------------------------------------------------------------------------------- /BatteryNotifier Widget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/Info.plist -------------------------------------------------------------------------------- /BatteryNotifier Widget/ListRowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/ListRowViewController.swift -------------------------------------------------------------------------------- /BatteryNotifier Widget/TodayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/TodayViewController.swift -------------------------------------------------------------------------------- /BatteryNotifier Widget/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier Widget/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /BatteryNotifier.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/BatteryNotifier.entitlements -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/README.rst -------------------------------------------------------------------------------- /Resources/BatteryNotifier.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/Resources/BatteryNotifier.zip -------------------------------------------------------------------------------- /Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/Resources/screenshot.png -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /SDMMobileDevice.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SDMMobileDevice.framework/SDMMobileDevice: -------------------------------------------------------------------------------- 1 | Versions/Current/SDMMobileDevice -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/CFRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/CFRuntime.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/CFTypeAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/CFTypeAddition.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFCConnection_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFCConnection_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFCOperation_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFCOperation_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFC_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AFC_Types.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstall.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallApImg3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallApImg3.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallApImg4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallApImg4.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallMonet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMAuthInstallMonet.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMDevice_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AMDevice_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AppleFileConduit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_AppleFileConduit.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Applications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Applications.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Connection.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Connection_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Connection_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Debugger.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Error.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_FileRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_FileRelay.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Functions.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Initialize.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Keys.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MCP.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MCP_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MCP_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MobileBackup2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MobileBackup2.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MobileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_MobileConfig.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Notification.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_SSL_Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_SSL_Functions.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Service.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_Types.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener_Class.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMuxListener_Types.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMux_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_USBMux_Protocol.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMD_pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMD_pcap.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Headers/SDMMobileDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Headers/SDMMobileDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AFCConnection_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AFCConnection_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AFCOperation_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AFCOperation_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AMDevice_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_AMDevice_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Classes.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Connection_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Connection_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Connection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Connection_Private.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Debugger_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_Debugger_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MCP_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MCP_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MDFUModeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MDFUModeDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRUSBDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRUSBDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRecoveryModeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRecoveryModeDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRestorableDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRestorableDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRestoreModeDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_MRestoreModeDevice.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_USBMuxListener_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMMD_USBMuxListener_Internal.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMTranslation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMTranslation.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMTypeTranslation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/PrivateHeaders/SDMTypeTranslation.h -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960Cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960Cert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960DevCert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960DevCert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960UnfusedCert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4Ticket8960UnfusedCert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketCACert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketDevPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketDevPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketUnfusedPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/Img4TicketUnfusedPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationCACert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationDblCert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationDblCert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationDblCertPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationDblCertPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationENandprogCert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationENandprogCert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationENandprogCertPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetAttestationENandprogCertPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetRootCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetRootCACert.crt -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketActivationPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketActivationPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketCalibrationPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketCalibrationPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningA1PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningA1PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningA2PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningA2PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningC1PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningC1PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningC2PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningC2PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningP1PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningP1PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningP2PublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningP2PublicKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketProvisioningPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketRootPrivateKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Certs/MonetTicketRootPrivateKey.pem -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/Resources/SDMMobileDevice.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/Resources/SDMMobileDevice.entitlements -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/SDMMobileDevice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/SDMMobileDevice -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/SDMMobileDevice.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SDMMobileDevice.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /iOS Battery Notifier.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS Battery Notifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS Battery Notifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iOS Battery Notifier.xcodeproj/xcshareddata/xcschemes/BatteryNotifier Widget.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier.xcodeproj/xcshareddata/xcschemes/BatteryNotifier Widget.xcscheme -------------------------------------------------------------------------------- /iOS Battery Notifier.xcodeproj/xcshareddata/xcschemes/BatteryNotifier.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier.xcodeproj/xcshareddata/xcschemes/BatteryNotifier.xcscheme -------------------------------------------------------------------------------- /iOS Battery Notifier/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/AppDelegate.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_128x128@2x.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_256x256.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_256x256@2x.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_512x512.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/BatteryNotifier_512x512@2x.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/iPad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/iPad.imageset/Contents.json -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/iPad.imageset/ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/iPad.imageset/ipad-portrait.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/iPhone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/iPhone.imageset/Contents.json -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/iPhone.imageset/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/iPhone.imageset/iphone.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/Contents.json -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/lowBattery128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/lowBattery128x128.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/lowBattery256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Assets.xcassets/lowBattery.imageset/lowBattery256x256.png -------------------------------------------------------------------------------- /iOS Battery Notifier/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS Battery Notifier/BatteryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/BatteryView.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/BatteryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/BatteryViewController.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Config/ConfigKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Config/ConfigKey.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/DarwinNotificationsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/DarwinNotificationsManager.h -------------------------------------------------------------------------------- /iOS Battery Notifier/DarwinNotificationsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/DarwinNotificationsManager.m -------------------------------------------------------------------------------- /iOS Battery Notifier/DeviceMenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/DeviceMenuItem.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Extensions/Cocoa/NSStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Extensions/Cocoa/NSStoryboard.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Extensions/Foundation/Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Extensions/Foundation/Notification.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Extensions/Foundation/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Extensions/Foundation/UserDefaults.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Info.plist -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/Device/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/Device/Device.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/DeviceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/DeviceService.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/SDMMobileDeviceService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/SDMMobileDeviceService.h -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/SDMMobileDeviceService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/SDMMobileDeviceService.m -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/SDMMobileDeviceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/SDMMobileDeviceService.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Models/Weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Models/Weak.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/NotifierMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/NotifierMenu.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/PreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/PreferencesController.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Services/DeviceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Services/DeviceManager.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Services/DeviceStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Services/DeviceStore.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Services/NotificationsHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Services/NotificationsHandler.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/StatusItemController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/StatusItemController.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/Storyboard/MainStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/Storyboard/MainStoryboard.swift -------------------------------------------------------------------------------- /iOS Battery Notifier/iOS Battery Notifier-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kalvin126/BatteryNotifier/HEAD/iOS Battery Notifier/iOS Battery Notifier-Bridging-Header.h --------------------------------------------------------------------------------