├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── microsoft-intune-app-sdk-for-maui-ios.md ├── .gitignore ├── IntuneMAMConfigurator.dmg ├── IntuneMAMResources.bundle ├── ActivityAlertViewController.nib ├── Assets.car ├── AuthViewController_iPad.nib ├── AuthViewController_iPhone.nib ├── Base.lproj │ └── PinViewController.nib ├── BlurViewController_iPad.nib ├── BlurViewController_iPhone.nib ├── DiagnosticAppStatusViewController.nib ├── DiagnosticUploadViewController.nib ├── DiagnosticViewController.nib ├── Info.plist ├── MTDComplianceViewController.nib ├── MTDComplianceViewControllerUnlistedMTDApp.nib ├── MessageViewController.nib ├── OpenInExtensionViewController.nib ├── PolicyViewController_iPad.nib ├── PolicyViewController_iPhone.nib ├── SplashViewWithAlertController_iPad.nib ├── SplashViewWithAlertController_iPhone.nib ├── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── cs.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── da.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── de.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── el.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── en.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── es.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── fi.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── fr.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── hr.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── hu.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── id.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── it.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── ja.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── ko.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── mappingTable.plist ├── nb.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── nl.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── pl.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── pt-BR.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── pt-PT.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── ro.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── ru.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── sv.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── th.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── tr.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── vi.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── zh-Hans.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings └── zh-Hant.lproj │ ├── AppRestrictions.strings │ └── PinViewController.strings ├── IntuneMAMStatic.xcframework ├── Info.plist ├── ios-arm64 │ └── IntuneMAMSwift.framework │ │ ├── Headers │ │ ├── IntuneMAM-Swift.h │ │ ├── IntuneMAM.h │ │ ├── IntuneMAMAppConfig.h │ │ ├── IntuneMAMAppConfigManager.h │ │ ├── IntuneMAMCertificatePinningManager.h │ │ ├── IntuneMAMComplianceManager.h │ │ ├── IntuneMAMDataProtectionInfo.h │ │ ├── IntuneMAMDataProtectionManager.h │ │ ├── IntuneMAMDefs.h │ │ ├── IntuneMAMDiagnosticConsole.h │ │ ├── IntuneMAMEnrollmentDelegate.h │ │ ├── IntuneMAMEnrollmentManager.h │ │ ├── IntuneMAMEnrollmentStatus.h │ │ ├── IntuneMAMFile.h │ │ ├── IntuneMAMFileProtectionInfo.h │ │ ├── IntuneMAMFileProtectionManager.h │ │ ├── IntuneMAMLogger.h │ │ ├── IntuneMAMPolicy.h │ │ ├── IntuneMAMPolicyDelegate.h │ │ ├── IntuneMAMPolicyManager.h │ │ ├── IntuneMAMSettings.h │ │ ├── IntuneMAMSwift.h │ │ ├── IntuneMAMUIHelper.h │ │ ├── IntuneMAMUserStatus.h │ │ ├── IntuneMAMUserStatusManager.h │ │ └── IntuneMAMVersionInfo.h │ │ ├── Info.plist │ │ ├── IntuneMAMResources.bundle │ │ ├── ActivityAlertViewController.nib │ │ ├── Assets.car │ │ ├── AuthViewController_iPad.nib │ │ ├── AuthViewController_iPhone.nib │ │ ├── Base.lproj │ │ │ └── PinViewController.nib │ │ ├── BlurViewController_iPad.nib │ │ ├── BlurViewController_iPhone.nib │ │ ├── DiagnosticAppStatusViewController.nib │ │ ├── DiagnosticUploadViewController.nib │ │ ├── DiagnosticViewController.nib │ │ ├── Info.plist │ │ ├── MTDComplianceViewController.nib │ │ ├── MTDComplianceViewControllerUnlistedMTDApp.nib │ │ ├── MessageViewController.nib │ │ ├── OpenInExtensionViewController.nib │ │ ├── PolicyViewController_iPad.nib │ │ ├── PolicyViewController_iPhone.nib │ │ ├── SplashViewWithAlertController_iPad.nib │ │ ├── SplashViewWithAlertController_iPhone.nib │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ ├── cs.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── da.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── de.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── el.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── en.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── es.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── fi.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── fr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── hr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── hu.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── id.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── it.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ja.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ko.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── mappingTable.plist │ │ ├── nb.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── nl.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pl.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pt-br.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pt-pt.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ro.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ru.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── sv.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── th.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── tr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── vi.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── zh-hans.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ └── zh-hant.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── IntuneMAMSwift │ │ ├── Modules │ │ ├── IntuneMAMSwift.swiftmodule │ │ │ ├── arm64-apple-ios.abi.json │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ └── arm64-apple-ios.swiftinterface │ │ └── module.modulemap │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature └── ios-arm64_x86_64-simulator │ └── IntuneMAMSwift.framework │ ├── Headers │ ├── IntuneMAM-Swift.h │ ├── IntuneMAM.h │ ├── IntuneMAMAppConfig.h │ ├── IntuneMAMAppConfigManager.h │ ├── IntuneMAMCertificatePinningManager.h │ ├── IntuneMAMComplianceManager.h │ ├── IntuneMAMDataProtectionInfo.h │ ├── IntuneMAMDataProtectionManager.h │ ├── IntuneMAMDefs.h │ ├── IntuneMAMDiagnosticConsole.h │ ├── IntuneMAMEnrollmentDelegate.h │ ├── IntuneMAMEnrollmentManager.h │ ├── IntuneMAMEnrollmentStatus.h │ ├── IntuneMAMFile.h │ ├── IntuneMAMFileProtectionInfo.h │ ├── IntuneMAMFileProtectionManager.h │ ├── IntuneMAMLogger.h │ ├── IntuneMAMPolicy.h │ ├── IntuneMAMPolicyDelegate.h │ ├── IntuneMAMPolicyManager.h │ ├── IntuneMAMSettings.h │ ├── IntuneMAMSwift.h │ ├── IntuneMAMUIHelper.h │ ├── IntuneMAMUserStatus.h │ ├── IntuneMAMUserStatusManager.h │ └── IntuneMAMVersionInfo.h │ ├── Info.plist │ ├── IntuneMAMResources.bundle │ ├── ActivityAlertViewController.nib │ ├── Assets.car │ ├── AuthViewController_iPad.nib │ ├── AuthViewController_iPhone.nib │ ├── Base.lproj │ │ └── PinViewController.nib │ ├── BlurViewController_iPad.nib │ ├── BlurViewController_iPhone.nib │ ├── DiagnosticAppStatusViewController.nib │ ├── DiagnosticUploadViewController.nib │ ├── DiagnosticViewController.nib │ ├── Info.plist │ ├── MTDComplianceViewController.nib │ ├── MTDComplianceViewControllerUnlistedMTDApp.nib │ ├── MessageViewController.nib │ ├── OpenInExtensionViewController.nib │ ├── PolicyViewController_iPad.nib │ ├── PolicyViewController_iPhone.nib │ ├── SplashViewWithAlertController_iPad.nib │ ├── SplashViewWithAlertController_iPhone.nib │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── cs.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── da.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── de.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── el.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── en.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── es.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── fi.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── fr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── hr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── hu.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── id.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── it.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ja.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ko.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── mappingTable.plist │ ├── nb.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── nl.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pl.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pt-br.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pt-pt.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ro.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ru.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── sv.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── th.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── tr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── vi.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── zh-hans.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ └── zh-hant.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── IntuneMAMSwift │ ├── Modules │ ├── IntuneMAMSwift.swiftmodule │ │ ├── arm64-apple-ios-simulator.abi.json │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ └── x86_64-apple-ios-simulator.swiftinterface │ └── module.modulemap │ ├── PrivacyInfo.xcprivacy │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── IntuneMAMSwift.xcframework ├── Info.plist ├── ios-arm64 │ └── IntuneMAMSwift.framework │ │ ├── Headers │ │ ├── IntuneMAM-Swift.h │ │ ├── IntuneMAM.h │ │ ├── IntuneMAMAppConfig.h │ │ ├── IntuneMAMAppConfigManager.h │ │ ├── IntuneMAMCertificatePinningManager.h │ │ ├── IntuneMAMComplianceManager.h │ │ ├── IntuneMAMDataProtectionInfo.h │ │ ├── IntuneMAMDataProtectionManager.h │ │ ├── IntuneMAMDefs.h │ │ ├── IntuneMAMDiagnosticConsole.h │ │ ├── IntuneMAMEnrollmentDelegate.h │ │ ├── IntuneMAMEnrollmentManager.h │ │ ├── IntuneMAMEnrollmentStatus.h │ │ ├── IntuneMAMFile.h │ │ ├── IntuneMAMFileProtectionInfo.h │ │ ├── IntuneMAMFileProtectionManager.h │ │ ├── IntuneMAMLogger.h │ │ ├── IntuneMAMPolicy.h │ │ ├── IntuneMAMPolicyDelegate.h │ │ ├── IntuneMAMPolicyManager.h │ │ ├── IntuneMAMSettings.h │ │ ├── IntuneMAMSwift.h │ │ ├── IntuneMAMTelemetry.h │ │ ├── IntuneMAMUIHelper.h │ │ ├── IntuneMAMUserStatus.h │ │ ├── IntuneMAMUserStatusManager.h │ │ └── IntuneMAMVersionInfo.h │ │ ├── Info.plist │ │ ├── IntuneMAMResources.bundle │ │ ├── ActivityAlertViewController.nib │ │ ├── Assets.car │ │ ├── AuthViewController_iPad.nib │ │ ├── AuthViewController_iPhone.nib │ │ ├── Base.lproj │ │ │ └── PinViewController.nib │ │ ├── BlurViewController_iPad.nib │ │ ├── BlurViewController_iPhone.nib │ │ ├── DiagnosticAppStatusViewController.nib │ │ ├── DiagnosticUploadViewController.nib │ │ ├── DiagnosticViewController.nib │ │ ├── Info.plist │ │ ├── MTDComplianceViewController.nib │ │ ├── MTDComplianceViewControllerUnlistedMTDApp.nib │ │ ├── MessageViewController.nib │ │ ├── OpenInExtensionViewController.nib │ │ ├── PolicyViewController_iPad.nib │ │ ├── PolicyViewController_iPhone.nib │ │ ├── SplashViewWithAlertController_iPad.nib │ │ ├── SplashViewWithAlertController_iPhone.nib │ │ ├── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ ├── cs.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── da.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── de.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── el.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── en.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── es.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── fi.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── fr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── hr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── hu.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── id.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── it.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ja.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ko.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── mappingTable.plist │ │ ├── nb.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── nl.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pl.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pt-BR.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── pt-PT.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ro.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── ru.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── sv.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── th.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── tr.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── vi.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── zh-Hans.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ └── zh-Hant.lproj │ │ │ ├── AppRestrictions.strings │ │ │ └── PinViewController.strings │ │ ├── IntuneMAMSwift │ │ ├── Modules │ │ ├── IntuneMAMSwift.swiftmodule │ │ │ ├── arm64-apple-ios.abi.json │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ └── arm64-apple-ios.swiftinterface │ │ └── module.modulemap │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources └── ios-arm64_x86_64-simulator │ └── IntuneMAMSwift.framework │ ├── Headers │ ├── IntuneMAM-Swift.h │ ├── IntuneMAM.h │ ├── IntuneMAMAppConfig.h │ ├── IntuneMAMAppConfigManager.h │ ├── IntuneMAMCertificatePinningManager.h │ ├── IntuneMAMComplianceManager.h │ ├── IntuneMAMDataProtectionInfo.h │ ├── IntuneMAMDataProtectionManager.h │ ├── IntuneMAMDefs.h │ ├── IntuneMAMDiagnosticConsole.h │ ├── IntuneMAMEnrollmentDelegate.h │ ├── IntuneMAMEnrollmentManager.h │ ├── IntuneMAMEnrollmentStatus.h │ ├── IntuneMAMFile.h │ ├── IntuneMAMFileProtectionInfo.h │ ├── IntuneMAMFileProtectionManager.h │ ├── IntuneMAMLogger.h │ ├── IntuneMAMPolicy.h │ ├── IntuneMAMPolicyDelegate.h │ ├── IntuneMAMPolicyManager.h │ ├── IntuneMAMSettings.h │ ├── IntuneMAMSwift.h │ ├── IntuneMAMTelemetry.h │ ├── IntuneMAMUIHelper.h │ ├── IntuneMAMUserStatus.h │ ├── IntuneMAMUserStatusManager.h │ └── IntuneMAMVersionInfo.h │ ├── Info.plist │ ├── IntuneMAMResources.bundle │ ├── ActivityAlertViewController.nib │ ├── Assets.car │ ├── AuthViewController_iPad.nib │ ├── AuthViewController_iPhone.nib │ ├── Base.lproj │ │ └── PinViewController.nib │ ├── BlurViewController_iPad.nib │ ├── BlurViewController_iPhone.nib │ ├── DiagnosticAppStatusViewController.nib │ ├── DiagnosticUploadViewController.nib │ ├── DiagnosticViewController.nib │ ├── Info.plist │ ├── MTDComplianceViewController.nib │ ├── MTDComplianceViewControllerUnlistedMTDApp.nib │ ├── MessageViewController.nib │ ├── OpenInExtensionViewController.nib │ ├── PolicyViewController_iPad.nib │ ├── PolicyViewController_iPhone.nib │ ├── SplashViewWithAlertController_iPad.nib │ ├── SplashViewWithAlertController_iPhone.nib │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ ├── cs.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── da.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── de.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── el.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── en.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── es.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── fi.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── fr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── hr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── hu.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── id.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── it.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ja.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ko.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── mappingTable.plist │ ├── nb.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── nl.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pl.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pt-BR.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── pt-PT.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ro.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── ru.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── sv.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── th.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── tr.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── vi.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── zh-Hans.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ └── zh-Hant.lproj │ │ ├── AppRestrictions.strings │ │ └── PinViewController.strings │ ├── IntuneMAMSwift │ ├── Modules │ ├── IntuneMAMSwift.swiftmodule │ │ ├── arm64-apple-ios-simulator.abi.json │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ └── x86_64-apple-ios-simulator.swiftinterface │ └── module.modulemap │ ├── PrivacyInfo.xcprivacy │ └── _CodeSignature │ └── CodeResources ├── IntuneMAMSwiftStub.xcframework ├── Info.plist ├── ios-arm64 │ └── IntuneMAMSwiftStub.framework │ │ ├── Info.plist │ │ ├── IntuneMAMSwiftStub │ │ ├── Modules │ │ └── IntuneMAMSwiftStub.swiftmodule │ │ │ ├── arm64-apple-ios.abi.json │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ └── arm64-apple-ios.swiftinterface │ │ └── _CodeSignature │ │ └── CodeResources └── ios-arm64_x86_64-simulator │ └── IntuneMAMSwiftStub.framework │ ├── Info.plist │ ├── IntuneMAMSwiftStub │ ├── Modules │ └── IntuneMAMSwiftStub.swiftmodule │ │ ├── arm64-apple-ios-simulator.abi.json │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ └── x86_64-apple-ios-simulator.swiftinterface │ └── _CodeSignature │ └── CodeResources ├── IntuneMAMTelemetry.xcframework ├── Info.plist ├── ios-arm64 │ └── IntuneMAMTelemetry.framework │ │ ├── Info.plist │ │ ├── IntuneMAMTelemetry │ │ ├── PrivacyInfo.xcprivacy │ │ └── _CodeSignature │ │ └── CodeResources └── ios-arm64_x86_64-simulator │ └── IntuneMAMTelemetry.framework │ ├── Info.plist │ ├── IntuneMAMTelemetry │ ├── PrivacyInfo.xcprivacy │ └── _CodeSignature │ └── CodeResources ├── Microsoft License Terms Intune App SDK for iOS.pdf ├── Package.swift ├── README.md ├── REDIST.txt ├── SECURITY.md ├── ThirdPartyNotices.txt ├── libIntuneMAMSwift.xcframework ├── Info.plist ├── ios-arm64 │ ├── Headers │ │ ├── IntuneMAM.h │ │ ├── IntuneMAMAppConfig.h │ │ ├── IntuneMAMAppConfigManager.h │ │ ├── IntuneMAMCertificatePinningManager.h │ │ ├── IntuneMAMComplianceManager.h │ │ ├── IntuneMAMDataProtectionInfo.h │ │ ├── IntuneMAMDataProtectionManager.h │ │ ├── IntuneMAMDefs.h │ │ ├── IntuneMAMDiagnosticConsole.h │ │ ├── IntuneMAMEnrollmentDelegate.h │ │ ├── IntuneMAMEnrollmentManager.h │ │ ├── IntuneMAMEnrollmentStatus.h │ │ ├── IntuneMAMFile.h │ │ ├── IntuneMAMFileProtectionInfo.h │ │ ├── IntuneMAMFileProtectionManager.h │ │ ├── IntuneMAMLogger.h │ │ ├── IntuneMAMPolicy.h │ │ ├── IntuneMAMPolicyDelegate.h │ │ ├── IntuneMAMPolicyManager.h │ │ ├── IntuneMAMSettings.h │ │ ├── IntuneMAMUIHelper.h │ │ ├── IntuneMAMUserStatus.h │ │ ├── IntuneMAMUserStatusManager.h │ │ └── IntuneMAMVersionInfo.h │ ├── IntuneMAMSwift.swiftmodule │ │ ├── arm64-apple-ios.abi.json │ │ ├── arm64-apple-ios.private.swiftinterface │ │ ├── arm64-apple-ios.swiftdoc │ │ └── arm64-apple-ios.swiftinterface │ └── libIntuneMAMSwift.a └── ios-arm64_x86_64-simulator │ ├── Headers │ ├── IntuneMAM.h │ ├── IntuneMAMAppConfig.h │ ├── IntuneMAMAppConfigManager.h │ ├── IntuneMAMCertificatePinningManager.h │ ├── IntuneMAMComplianceManager.h │ ├── IntuneMAMDataProtectionInfo.h │ ├── IntuneMAMDataProtectionManager.h │ ├── IntuneMAMDefs.h │ ├── IntuneMAMDiagnosticConsole.h │ ├── IntuneMAMEnrollmentDelegate.h │ ├── IntuneMAMEnrollmentManager.h │ ├── IntuneMAMEnrollmentStatus.h │ ├── IntuneMAMFile.h │ ├── IntuneMAMFileProtectionInfo.h │ ├── IntuneMAMFileProtectionManager.h │ ├── IntuneMAMLogger.h │ ├── IntuneMAMPolicy.h │ ├── IntuneMAMPolicyDelegate.h │ ├── IntuneMAMPolicyManager.h │ ├── IntuneMAMSettings.h │ ├── IntuneMAMUIHelper.h │ ├── IntuneMAMUserStatus.h │ ├── IntuneMAMUserStatusManager.h │ └── IntuneMAMVersionInfo.h │ ├── IntuneMAMSwift.swiftmodule │ ├── arm64-apple-ios-simulator.abi.json │ ├── arm64-apple-ios-simulator.private.swiftinterface │ ├── arm64-apple-ios-simulator.swiftdoc │ ├── arm64-apple-ios-simulator.swiftinterface │ ├── x86_64-apple-ios-simulator.abi.json │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ ├── x86_64-apple-ios-simulator.swiftdoc │ └── x86_64-apple-ios-simulator.swiftinterface │ └── libIntuneMAMSwift.a └── libIntuneMAMSwiftFileProvider.xcframework ├── Info.plist ├── ios-arm64 ├── Headers │ ├── IntuneMAM.h │ ├── IntuneMAMAppConfig.h │ ├── IntuneMAMAppConfigManager.h │ ├── IntuneMAMCertificatePinningManager.h │ ├── IntuneMAMComplianceManager.h │ ├── IntuneMAMDataProtectionInfo.h │ ├── IntuneMAMDataProtectionManager.h │ ├── IntuneMAMDefs.h │ ├── IntuneMAMDiagnosticConsole.h │ ├── IntuneMAMEnrollmentDelegate.h │ ├── IntuneMAMEnrollmentManager.h │ ├── IntuneMAMEnrollmentStatus.h │ ├── IntuneMAMFile.h │ ├── IntuneMAMFileProtectionInfo.h │ ├── IntuneMAMFileProtectionManager.h │ ├── IntuneMAMLogger.h │ ├── IntuneMAMPolicy.h │ ├── IntuneMAMPolicyDelegate.h │ ├── IntuneMAMPolicyManager.h │ ├── IntuneMAMSettings.h │ ├── IntuneMAMUIHelper.h │ ├── IntuneMAMUserStatus.h │ ├── IntuneMAMUserStatusManager.h │ └── IntuneMAMVersionInfo.h ├── IntuneMAMSwiftFileProvider.swiftmodule │ ├── arm64-apple-ios.abi.json │ ├── arm64-apple-ios.private.swiftinterface │ ├── arm64-apple-ios.swiftdoc │ └── arm64-apple-ios.swiftinterface └── libIntuneMAMSwiftFileProvider.a └── ios-arm64_x86_64-simulator ├── Headers ├── IntuneMAM.h ├── IntuneMAMAppConfig.h ├── IntuneMAMAppConfigManager.h ├── IntuneMAMCertificatePinningManager.h ├── IntuneMAMComplianceManager.h ├── IntuneMAMDataProtectionInfo.h ├── IntuneMAMDataProtectionManager.h ├── IntuneMAMDefs.h ├── IntuneMAMDiagnosticConsole.h ├── IntuneMAMEnrollmentDelegate.h ├── IntuneMAMEnrollmentManager.h ├── IntuneMAMEnrollmentStatus.h ├── IntuneMAMFile.h ├── IntuneMAMFileProtectionInfo.h ├── IntuneMAMFileProtectionManager.h ├── IntuneMAMLogger.h ├── IntuneMAMPolicy.h ├── IntuneMAMPolicyDelegate.h ├── IntuneMAMPolicyManager.h ├── IntuneMAMSettings.h ├── IntuneMAMUIHelper.h ├── IntuneMAMUserStatus.h ├── IntuneMAMUserStatusManager.h └── IntuneMAMVersionInfo.h ├── IntuneMAMSwiftFileProvider.swiftmodule ├── arm64-apple-ios-simulator.abi.json ├── arm64-apple-ios-simulator.private.swiftinterface ├── arm64-apple-ios-simulator.swiftdoc ├── arm64-apple-ios-simulator.swiftinterface ├── x86_64-apple-ios-simulator.abi.json ├── x86_64-apple-ios-simulator.private.swiftinterface ├── x86_64-apple-ios-simulator.swiftdoc └── x86_64-apple-ios-simulator.swiftinterface └── libIntuneMAMSwiftFileProvider.a /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/microsoft-intune-app-sdk-for-maui-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/.github/ISSUE_TEMPLATE/microsoft-intune-app-sdk-for-maui-ios.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /IntuneMAMConfigurator.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMConfigurator.dmg -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ActivityAlertViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ActivityAlertViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/Assets.car -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/AuthViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/AuthViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/AuthViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/AuthViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/Base.lproj/PinViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/BlurViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/BlurViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/BlurViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/BlurViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/DiagnosticUploadViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/DiagnosticUploadViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/DiagnosticViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/DiagnosticViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/Info.plist -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/MTDComplianceViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/MTDComplianceViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/MessageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/MessageViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/OpenInExtensionViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/OpenInExtensionViewController.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/PolicyViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/PolicyViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/PolicyViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/cs.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/cs.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/da.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/da.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/de.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/de.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/el.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/el.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/en.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/en.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/es.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/es.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/fi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/fi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/fr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/fr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/hr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/hr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/hu.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/hu.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/id.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/id.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/it.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/it.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ja.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ja.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ko.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ko.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/mappingTable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/mappingTable.plist -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/nb.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/nb.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/nl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/nl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pt-BR.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pt-BR.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pt-BR.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pt-BR.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pt-PT.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pt-PT.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/pt-PT.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/pt-PT.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ro.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ro.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/ru.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/ru.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/sv.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/sv.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/th.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/th.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/tr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/tr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/vi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/vi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/zh-Hans.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/zh-Hans.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/zh-Hans.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/zh-Hans.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/zh-Hant.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/zh-Hant.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMResources.bundle/zh-Hant.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMResources.bundle/zh-Hant.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticUploadViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticUploadViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/OpenInExtensionViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/OpenInExtensionViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-br.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-br.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-br.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-br.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-pt.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-pt.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-pt.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-pt.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hans.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hans.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hans.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hans.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hant.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hant.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hant.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-hant.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMSwift -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMSwift -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMStatic.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMTelemetry.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticAppStatusViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticUploadViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticUploadViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewControllerUnlistedMTDApp.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/OpenInExtensionViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/OpenInExtensionViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/SplashViewWithAlertController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/cs.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/da.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/de.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/el.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/en.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/es.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/fr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/hu.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/id.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/it.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ja.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ko.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nb.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/nl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pl.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-BR.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-BR.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-BR.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-BR.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-PT.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-PT.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-PT.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/pt-PT.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ro.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ru.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/sv.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/th.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/tr.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/vi.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hans.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hans.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hans.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hans.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hant.lproj/AppRestrictions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hant.lproj/AppRestrictions.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hant.lproj/PinViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMResources.bundle/zh-Hant.lproj/PinViewController.strings -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/IntuneMAMSwift -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM-Swift.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMSwift.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMTelemetry.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/ActivityAlertViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Assets.car -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/AuthViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Base.lproj/PinViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/BlurViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/DiagnosticViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MTDComplianceViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/MessageViewController.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPad.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/PolicyViewController_iPhone.nib -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMResources.bundle/mappingTable.plist -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/IntuneMAMSwift -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/IntuneMAMSwiftStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/IntuneMAMSwiftStub -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Modules/IntuneMAMSwiftStub.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Modules/IntuneMAMSwiftStub.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Modules/IntuneMAMSwiftStub.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/Modules/IntuneMAMSwiftStub.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64/IntuneMAMSwiftStub.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/IntuneMAMSwiftStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/IntuneMAMSwiftStub -------------------------------------------------------------------------------- /IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMSwiftStub.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwiftStub.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/IntuneMAMTelemetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/IntuneMAMTelemetry -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64/IntuneMAMTelemetry.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/Info.plist -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/IntuneMAMTelemetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/IntuneMAMTelemetry -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/IntuneMAMTelemetry.xcframework/ios-arm64_x86_64-simulator/IntuneMAMTelemetry.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Microsoft License Terms Intune App SDK for iOS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/Microsoft License Terms Intune App SDK for iOS.pdf -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/README.md -------------------------------------------------------------------------------- /REDIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/REDIST.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/Info.plist -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/IntuneMAMSwift.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64/libIntuneMAMSwift.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64/libIntuneMAMSwift.a -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/IntuneMAMSwift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/libIntuneMAMSwift.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwift.xcframework/ios-arm64_x86_64-simulator/libIntuneMAMSwift.a -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/Info.plist -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/IntuneMAMSwiftFileProvider.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/libIntuneMAMSwiftFileProvider.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64/libIntuneMAMSwiftFileProvider.a -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAM.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfig.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMAppConfigManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMCertificatePinningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMCertificatePinningManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMComplianceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMComplianceManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDataProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDefs.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDiagnosticConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMDiagnosticConsole.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMEnrollmentStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFile.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMFileProtectionManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMLogger.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicy.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyDelegate.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMPolicyManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMSettings.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUIHelper.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatus.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMUserStatusManager.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMVersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/Headers/IntuneMAMVersionInfo.h -------------------------------------------------------------------------------- /libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/libIntuneMAMSwiftFileProvider.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftconnect/ms-intune-app-sdk-ios/HEAD/libIntuneMAMSwiftFileProvider.xcframework/ios-arm64_x86_64-simulator/libIntuneMAMSwiftFileProvider.a --------------------------------------------------------------------------------