├── .bundle └── config ├── .clang-format ├── .gitignore ├── Artwork └── NXBoot.afphoto ├── Brewfile ├── Brewfile.lock.json ├── COPYING.md ├── Config.xcconfig ├── DEBIAN ├── control └── postinst ├── Gemfile ├── Gemfile.lock ├── NXBoot.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── NXBoot.xcscheme │ ├── NXBootCmd.xcscheme │ └── NXBootKit.xcscheme ├── NXBoot ├── AboutScreenViewController.h ├── AboutScreenViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── nxboot_icon.png │ ├── Contents.json │ └── Tri.imageset │ │ ├── Contents.json │ │ └── tri428pz.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── GettingStartedViewController.h ├── GettingStartedViewController.m ├── Help.html ├── Info.plist ├── MainViewController.h ├── MainViewController.m ├── Model.xcdatamodeld │ └── Model.xcdatamodel │ │ └── contents ├── NXBootJailbreak.entitlements ├── PackageIcon.png ├── PayloadStorage.h ├── PayloadStorage.m ├── Settings.h ├── Settings.m ├── SettingsViewController.h ├── SettingsViewController.m ├── SwitchTableViewCell.h ├── SwitchTableViewCell.m └── main.m ├── NXBootCmd ├── main.m └── nxboot.entitlements ├── NXBootKit ├── NXBootKit.h ├── NXExec.h ├── NXExec.m ├── NXHekateCustomizer.h ├── NXHekateCustomizer.m ├── NXLog.h ├── NXLog.m ├── NXUSBDevice.h ├── NXUSBDevice.m ├── NXUSBDeviceEnumerator.h ├── NXUSBDeviceEnumerator.m └── NXVisibility.h ├── README.md ├── RELEASE.md ├── Shared └── intermezzo.bin ├── System ├── Developer ├── Frameworks-iphoneos │ └── IOKit.framework │ │ ├── Headers │ │ ├── IOKit.tbd │ │ ├── Modules │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ ├── IOKit.tbd │ │ └── Modules │ │ └── Current ├── Frameworks-iphonesimulator │ └── IOKit.framework │ │ ├── Headers │ │ ├── IOKit.tbd │ │ ├── Modules │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ ├── IOKit.tbd │ │ └── Modules │ │ └── Current ├── Frameworks-macosx │ └── .gitkeep └── Include │ ├── libkern │ ├── OSReturn.h │ └── OSTypes.h │ ├── net │ └── if_media.h │ └── sys │ ├── disk.h │ └── kernel_types.h ├── docs ├── .gitignore ├── _includes │ └── changelog.html ├── cydia-depiction.html ├── cydia-styles.css ├── index.html ├── nxboot_icon.png ├── nxboot_setup_photo.jpg └── styles.css ├── notarize_cmdline.sh ├── quickstart.sh └── vendor └── AppCenter-SDK-Apple-4.4.3 ├── .gitattributes ├── AppCenter.xcframework ├── Info.plist ├── ios-arm64_armv7 │ └── AppCenter.framework │ │ ├── AppCenter │ │ ├── Headers │ │ ├── AppCenter.h │ │ ├── MSACAbstractLog.h │ │ ├── MSACAppCenter.h │ │ ├── MSACAppCenterErrors.h │ │ ├── MSACChannelGroupProtocol.h │ │ ├── MSACChannelProtocol.h │ │ ├── MSACConstants+Flags.h │ │ ├── MSACConstants.h │ │ ├── MSACDevice.h │ │ ├── MSACEnable.h │ │ ├── MSACLog.h │ │ ├── MSACLogWithProperties.h │ │ ├── MSACLogger.h │ │ ├── MSACSerializableObject.h │ │ ├── MSACService.h │ │ ├── MSACServiceAbstract.h │ │ ├── MSACWrapperLogger.h │ │ └── MSACWrapperSdk.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── PrivateHeaders │ │ └── MSACChannelDelegate.h └── ios-arm64_x86_64-simulator │ └── AppCenter.framework │ ├── AppCenter │ ├── Headers │ ├── AppCenter.h │ ├── MSACAbstractLog.h │ ├── MSACAppCenter.h │ ├── MSACAppCenterErrors.h │ ├── MSACChannelGroupProtocol.h │ ├── MSACChannelProtocol.h │ ├── MSACConstants+Flags.h │ ├── MSACConstants.h │ ├── MSACDevice.h │ ├── MSACEnable.h │ ├── MSACLog.h │ ├── MSACLogWithProperties.h │ ├── MSACLogger.h │ ├── MSACSerializableObject.h │ ├── MSACService.h │ ├── MSACServiceAbstract.h │ ├── MSACWrapperLogger.h │ └── MSACWrapperSdk.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── PrivateHeaders │ └── MSACChannelDelegate.h │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── AppCenterAnalytics.xcframework ├── Info.plist ├── ios-arm64_armv7 │ └── AppCenterAnalytics.framework │ │ ├── AppCenterAnalytics │ │ ├── Headers │ │ ├── AppCenterAnalytics.h │ │ ├── MSACAnalytics.h │ │ ├── MSACAnalyticsAuthenticationProvider.h │ │ ├── MSACAnalyticsAuthenticationProviderDelegate.h │ │ ├── MSACAnalyticsTransmissionTarget.h │ │ ├── MSACEventLog.h │ │ ├── MSACEventProperties.h │ │ ├── MSACLogWithNameAndProperties.h │ │ └── MSACPropertyConfigurator.h │ │ ├── Info.plist │ │ └── Modules │ │ └── module.modulemap └── ios-arm64_x86_64-simulator │ └── AppCenterAnalytics.framework │ ├── AppCenterAnalytics │ ├── Headers │ ├── AppCenterAnalytics.h │ ├── MSACAnalytics.h │ ├── MSACAnalyticsAuthenticationProvider.h │ ├── MSACAnalyticsAuthenticationProviderDelegate.h │ ├── MSACAnalyticsTransmissionTarget.h │ ├── MSACEventLog.h │ ├── MSACEventProperties.h │ ├── MSACLogWithNameAndProperties.h │ └── MSACPropertyConfigurator.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── AppCenterCrashes.xcframework ├── Info.plist ├── ios-arm64_armv7 │ └── AppCenterCrashes.framework │ │ ├── AppCenterCrashes │ │ ├── Headers │ │ ├── AppCenterCrashes.h │ │ ├── MSACCrashHandlerSetupDelegate.h │ │ ├── MSACCrashes.h │ │ ├── MSACCrashesDelegate.h │ │ ├── MSACErrorAttachmentLog+Utility.h │ │ ├── MSACErrorAttachmentLog.h │ │ ├── MSACErrorReport.h │ │ ├── MSACExceptionModel.h │ │ ├── MSACStackFrame.h │ │ ├── MSACWrapperCrashesHelper.h │ │ └── MSACWrapperExceptionModel.h │ │ ├── Info.plist │ │ └── Modules │ │ └── module.modulemap └── ios-arm64_x86_64-simulator │ └── AppCenterCrashes.framework │ ├── AppCenterCrashes │ ├── Headers │ ├── AppCenterCrashes.h │ ├── MSACCrashHandlerSetupDelegate.h │ ├── MSACCrashes.h │ ├── MSACCrashesDelegate.h │ ├── MSACErrorAttachmentLog+Utility.h │ ├── MSACErrorAttachmentLog.h │ ├── MSACErrorReport.h │ ├── MSACExceptionModel.h │ ├── MSACStackFrame.h │ ├── MSACWrapperCrashesHelper.h │ └── MSACWrapperExceptionModel.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── CHANGELOG.md ├── LICENSE └── README.md /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/.gitignore -------------------------------------------------------------------------------- /Artwork/NXBoot.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Artwork/NXBoot.afphoto -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/COPYING.md -------------------------------------------------------------------------------- /Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Config.xcconfig -------------------------------------------------------------------------------- /DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/DEBIAN/control -------------------------------------------------------------------------------- /DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/DEBIAN/postinst -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /NXBoot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NXBoot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NXBoot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NXBoot.xcodeproj/xcshareddata/xcschemes/NXBoot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/xcshareddata/xcschemes/NXBoot.xcscheme -------------------------------------------------------------------------------- /NXBoot.xcodeproj/xcshareddata/xcschemes/NXBootCmd.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/xcshareddata/xcschemes/NXBootCmd.xcscheme -------------------------------------------------------------------------------- /NXBoot.xcodeproj/xcshareddata/xcschemes/NXBootKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot.xcodeproj/xcshareddata/xcschemes/NXBootKit.xcscheme -------------------------------------------------------------------------------- /NXBoot/AboutScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/AboutScreenViewController.h -------------------------------------------------------------------------------- /NXBoot/AboutScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/AboutScreenViewController.m -------------------------------------------------------------------------------- /NXBoot/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/AppDelegate.h -------------------------------------------------------------------------------- /NXBoot/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/AppDelegate.m -------------------------------------------------------------------------------- /NXBoot/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NXBoot/Assets.xcassets/AppIcon.appiconset/nxboot_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Assets.xcassets/AppIcon.appiconset/nxboot_icon.png -------------------------------------------------------------------------------- /NXBoot/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NXBoot/Assets.xcassets/Tri.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Assets.xcassets/Tri.imageset/Contents.json -------------------------------------------------------------------------------- /NXBoot/Assets.xcassets/Tri.imageset/tri428pz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Assets.xcassets/Tri.imageset/tri428pz.png -------------------------------------------------------------------------------- /NXBoot/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NXBoot/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NXBoot/GettingStartedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/GettingStartedViewController.h -------------------------------------------------------------------------------- /NXBoot/GettingStartedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/GettingStartedViewController.m -------------------------------------------------------------------------------- /NXBoot/Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Help.html -------------------------------------------------------------------------------- /NXBoot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Info.plist -------------------------------------------------------------------------------- /NXBoot/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/MainViewController.h -------------------------------------------------------------------------------- /NXBoot/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/MainViewController.m -------------------------------------------------------------------------------- /NXBoot/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /NXBoot/NXBootJailbreak.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/NXBootJailbreak.entitlements -------------------------------------------------------------------------------- /NXBoot/PackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/PackageIcon.png -------------------------------------------------------------------------------- /NXBoot/PayloadStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/PayloadStorage.h -------------------------------------------------------------------------------- /NXBoot/PayloadStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/PayloadStorage.m -------------------------------------------------------------------------------- /NXBoot/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Settings.h -------------------------------------------------------------------------------- /NXBoot/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/Settings.m -------------------------------------------------------------------------------- /NXBoot/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/SettingsViewController.h -------------------------------------------------------------------------------- /NXBoot/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/SettingsViewController.m -------------------------------------------------------------------------------- /NXBoot/SwitchTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/SwitchTableViewCell.h -------------------------------------------------------------------------------- /NXBoot/SwitchTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/SwitchTableViewCell.m -------------------------------------------------------------------------------- /NXBoot/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBoot/main.m -------------------------------------------------------------------------------- /NXBootCmd/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootCmd/main.m -------------------------------------------------------------------------------- /NXBootCmd/nxboot.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootCmd/nxboot.entitlements -------------------------------------------------------------------------------- /NXBootKit/NXBootKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXBootKit.h -------------------------------------------------------------------------------- /NXBootKit/NXExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXExec.h -------------------------------------------------------------------------------- /NXBootKit/NXExec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXExec.m -------------------------------------------------------------------------------- /NXBootKit/NXHekateCustomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXHekateCustomizer.h -------------------------------------------------------------------------------- /NXBootKit/NXHekateCustomizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXHekateCustomizer.m -------------------------------------------------------------------------------- /NXBootKit/NXLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXLog.h -------------------------------------------------------------------------------- /NXBootKit/NXLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXLog.m -------------------------------------------------------------------------------- /NXBootKit/NXUSBDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXUSBDevice.h -------------------------------------------------------------------------------- /NXBootKit/NXUSBDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXUSBDevice.m -------------------------------------------------------------------------------- /NXBootKit/NXUSBDeviceEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXUSBDeviceEnumerator.h -------------------------------------------------------------------------------- /NXBootKit/NXUSBDeviceEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXUSBDeviceEnumerator.m -------------------------------------------------------------------------------- /NXBootKit/NXVisibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/NXBootKit/NXVisibility.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Shared/intermezzo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/Shared/intermezzo.bin -------------------------------------------------------------------------------- /System/Developer: -------------------------------------------------------------------------------- 1 | /Applications/Xcode.app/Contents/Developer -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/IOKit.tbd: -------------------------------------------------------------------------------- 1 | Versions/Current/IOKit.tbd -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Versions/A/Headers: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Headers -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Versions/A/IOKit.tbd: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit.tbd -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Versions/A/Modules: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Modules -------------------------------------------------------------------------------- /System/Frameworks-iphoneos/IOKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/IOKit.tbd: -------------------------------------------------------------------------------- 1 | Versions/Current/IOKit.tbd -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Versions/A/Headers: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Headers -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Versions/A/IOKit.tbd: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit.tbd -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Versions/A/Modules: -------------------------------------------------------------------------------- 1 | ../../../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Modules -------------------------------------------------------------------------------- /System/Frameworks-iphonesimulator/IOKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /System/Frameworks-macosx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/Include/libkern/OSReturn.h: -------------------------------------------------------------------------------- 1 | ../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libkern/OSReturn.h -------------------------------------------------------------------------------- /System/Include/libkern/OSTypes.h: -------------------------------------------------------------------------------- 1 | ../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libkern/OSTypes.h -------------------------------------------------------------------------------- /System/Include/net/if_media.h: -------------------------------------------------------------------------------- 1 | ../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net/if_media.h -------------------------------------------------------------------------------- /System/Include/sys/disk.h: -------------------------------------------------------------------------------- 1 | ../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/disk.h -------------------------------------------------------------------------------- /System/Include/sys/kernel_types.h: -------------------------------------------------------------------------------- 1 | ../../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/kernel_types.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /docs/_includes/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/_includes/changelog.html -------------------------------------------------------------------------------- /docs/cydia-depiction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/cydia-depiction.html -------------------------------------------------------------------------------- /docs/cydia-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/cydia-styles.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/nxboot_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/nxboot_icon.png -------------------------------------------------------------------------------- /docs/nxboot_setup_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/nxboot_setup_photo.jpg -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/docs/styles.css -------------------------------------------------------------------------------- /notarize_cmdline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/notarize_cmdline.sh -------------------------------------------------------------------------------- /quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/quickstart.sh -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/.gitattributes -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/AppCenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/AppCenter -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/AppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/AppCenter.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAbstractLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAbstractLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAppCenter.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAppCenterErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACAppCenterErrors.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACChannelGroupProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACChannelGroupProtocol.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACChannelProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACChannelProtocol.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACConstants+Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACConstants+Flags.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACConstants.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACDevice.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACEnable.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLogWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLogWithProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACLogger.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACSerializableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACSerializableObject.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACService.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACServiceAbstract.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACWrapperLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACWrapperLogger.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACWrapperSdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Headers/MSACWrapperSdk.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/PrivateHeaders/MSACChannelDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_armv7/AppCenter.framework/PrivateHeaders/MSACChannelDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/AppCenter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/AppCenter -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/AppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/AppCenter.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAbstractLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAbstractLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAppCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAppCenter.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAppCenterErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACAppCenterErrors.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACChannelGroupProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACChannelGroupProtocol.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACChannelProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACChannelProtocol.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACConstants+Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACConstants+Flags.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACConstants.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACDevice.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACEnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACEnable.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLogWithProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLogWithProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACLogger.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACSerializableObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACSerializableObject.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACService.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACServiceAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACServiceAbstract.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACWrapperLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACWrapperLogger.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACWrapperSdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Headers/MSACWrapperSdk.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/PrivateHeaders/MSACChannelDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/PrivateHeaders/MSACChannelDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenter.xcframework/ios-arm64_x86_64-simulator/AppCenter.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/AppCenterAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/AppCenterAnalytics -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalytics.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProvider.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProviderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProviderDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsTransmissionTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACAnalyticsTransmissionTarget.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACEventLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACEventProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACEventProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACLogWithNameAndProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACLogWithNameAndProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACPropertyConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Headers/MSACPropertyConfigurator.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_armv7/AppCenterAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/AppCenterAnalytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/AppCenterAnalytics -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/AppCenterAnalytics.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalytics.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProvider.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProviderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsAuthenticationProviderDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsTransmissionTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACAnalyticsTransmissionTarget.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACEventLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACEventProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACEventProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACLogWithNameAndProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACLogWithNameAndProperties.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACPropertyConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Headers/MSACPropertyConfigurator.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterAnalytics.xcframework/ios-arm64_x86_64-simulator/AppCenterAnalytics.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/AppCenterCrashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/AppCenterCrashes -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/AppCenterCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/AppCenterCrashes.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashHandlerSetupDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashHandlerSetupDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashes.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashesDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACCrashesDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog+Utility.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACErrorReport.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACExceptionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACExceptionModel.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACStackFrame.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACWrapperCrashesHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACWrapperCrashesHelper.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACWrapperExceptionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Headers/MSACWrapperExceptionModel.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_armv7/AppCenterCrashes.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/AppCenterCrashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/AppCenterCrashes -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/AppCenterCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/AppCenterCrashes.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashHandlerSetupDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashHandlerSetupDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashes.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashesDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACCrashesDelegate.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog+Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog+Utility.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorAttachmentLog.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACErrorReport.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACExceptionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACExceptionModel.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACStackFrame.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACWrapperCrashesHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACWrapperCrashesHelper.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACWrapperExceptionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Headers/MSACWrapperExceptionModel.h -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Info.plist -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/AppCenterCrashes.xcframework/ios-arm64_x86_64-simulator/AppCenterCrashes.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/LICENSE -------------------------------------------------------------------------------- /vendor/AppCenter-SDK-Apple-4.4.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mologie/nxboot/HEAD/vendor/AppCenter-SDK-Apple-4.4.3/README.md --------------------------------------------------------------------------------