├── .gitignore ├── .ruby-version ├── Podfile ├── Podfile.lock ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── sampleapp-ios-swift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── sampleapp-ios-swift.xcscheme ├── sampleapp-ios-swift.xcworkspace └── contents.xcworkspacedata ├── sampleapp-ios-swift ├── AnalyticsViewController.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── Analytics.imageset │ │ ├── Analytics.png │ │ ├── Analytics@2x.png │ │ ├── Analytics@3x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Appicon120-1.png │ │ ├── Appicon120.png │ │ ├── Appicon180.png │ │ ├── Appicon40.png │ │ ├── Appicon58.png │ │ ├── Appicon60.png │ │ ├── Appicon80.png │ │ ├── Appicon87.png │ │ └── Contents.json │ ├── Build.imageset │ │ ├── Build.png │ │ ├── Build@2x.png │ │ ├── Build@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── Crashes.imageset │ │ ├── Contents.json │ │ ├── Crashes.png │ │ ├── Crashes@2x.png │ │ └── Crashes@3x.png │ ├── Distribute.imageset │ │ ├── Contents.json │ │ ├── Distribute.png │ │ ├── Distribute@2x.png │ │ └── Distribute@3x.png │ ├── MCLogo.imageset │ │ ├── Contents.json │ │ ├── MCLogo.png │ │ ├── MCLogo@2x.png │ │ └── MCLogo@3x.png │ ├── Push.imageset │ │ ├── Contents.json │ │ ├── Push.png │ │ ├── Push@2x.png │ │ └── Push@3x.png │ ├── SplashPageLogo.imageset │ │ ├── Contents.json │ │ ├── SplashPageLogo.png │ │ ├── SplashPageLogo@2x.png │ │ └── SplashPageLogo@3x.png │ └── Test.imageset │ │ ├── Contents.json │ │ ├── Test.png │ │ ├── Test@2x.png │ │ └── Test@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CrashViewController.swift ├── Info.plist ├── RootViewController.swift └── sampleapp-ios-swift.entitlements └── sampleapp-ios-swiftUITests ├── Info.plist └── sampleapp_ios_swiftUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.2 2 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /sampleapp-ios-swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sampleapp-ios-swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sampleapp-ios-swift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sampleapp-ios-swift.xcodeproj/xcshareddata/xcschemes/sampleapp-ios-swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift.xcodeproj/xcshareddata/xcschemes/sampleapp-ios-swift.xcscheme -------------------------------------------------------------------------------- /sampleapp-ios-swift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sampleapp-ios-swift/AnalyticsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/AnalyticsViewController.swift -------------------------------------------------------------------------------- /sampleapp-ios-swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/AppDelegate.swift -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Analytics@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Analytics.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon120-1.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon120.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon180.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon40.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon58.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon60.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon80.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Appicon87.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Build.imageset/Build@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Build.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Build.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Crashes.imageset/Crashes@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Distribute.imageset/Distribute@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/MCLogo.imageset/MCLogo@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Push.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Push.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Push.imageset/Push@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/SplashPageLogo.imageset/SplashPageLogo@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Test.imageset/Contents.json -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test@2x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Assets.xcassets/Test.imageset/Test@3x.png -------------------------------------------------------------------------------- /sampleapp-ios-swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sampleapp-ios-swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sampleapp-ios-swift/CrashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/CrashViewController.swift -------------------------------------------------------------------------------- /sampleapp-ios-swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/Info.plist -------------------------------------------------------------------------------- /sampleapp-ios-swift/RootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/RootViewController.swift -------------------------------------------------------------------------------- /sampleapp-ios-swift/sampleapp-ios-swift.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swift/sampleapp-ios-swift.entitlements -------------------------------------------------------------------------------- /sampleapp-ios-swiftUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swiftUITests/Info.plist -------------------------------------------------------------------------------- /sampleapp-ios-swiftUITests/sampleapp_ios_swiftUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sampleapp-ios-swift/HEAD/sampleapp-ios-swiftUITests/sampleapp_ios_swiftUITests.swift --------------------------------------------------------------------------------