├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── Roboflow Starter Project ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── Roboflow.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-Info.plist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.markdown │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.plist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-dummy.m │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks.sh │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-umbrella.h │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.debug.xcconfig │ │ ├── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.modulemap │ │ └── Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.release.xcconfig │ │ ├── Pods-Roboflow Starter Project │ │ ├── Pods-Roboflow Starter Project-Info.plist │ │ ├── Pods-Roboflow Starter Project-acknowledgements.markdown │ │ ├── Pods-Roboflow Starter Project-acknowledgements.plist │ │ ├── Pods-Roboflow Starter Project-dummy.m │ │ ├── Pods-Roboflow Starter Project-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-Roboflow Starter Project-frameworks.sh │ │ ├── Pods-Roboflow Starter Project-umbrella.h │ │ ├── Pods-Roboflow Starter Project.debug.xcconfig │ │ ├── Pods-Roboflow Starter Project.modulemap │ │ └── Pods-Roboflow Starter Project.release.xcconfig │ │ ├── Pods-Roboflow Starter ProjectTests │ │ ├── Pods-Roboflow Starter ProjectTests-Info.plist │ │ ├── Pods-Roboflow Starter ProjectTests-acknowledgements.markdown │ │ ├── Pods-Roboflow Starter ProjectTests-acknowledgements.plist │ │ ├── Pods-Roboflow Starter ProjectTests-dummy.m │ │ ├── Pods-Roboflow Starter ProjectTests-umbrella.h │ │ ├── Pods-Roboflow Starter ProjectTests.debug.xcconfig │ │ ├── Pods-Roboflow Starter ProjectTests.modulemap │ │ └── Pods-Roboflow Starter ProjectTests.release.xcconfig │ │ └── Roboflow │ │ ├── Roboflow-Info.plist │ │ ├── Roboflow-dummy.m │ │ ├── Roboflow-prefix.pch │ │ ├── Roboflow-umbrella.h │ │ ├── Roboflow.debug.xcconfig │ │ ├── Roboflow.modulemap │ │ └── Roboflow.release.xcconfig ├── Roboflow Starter Project.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Roboflow Starter Project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Roboflow Starter Project │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DispatchTimeInterval+Extension.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── UIImage+Extension.swift │ └── ViewController.swift ├── Roboflow Starter ProjectTests │ └── Roboflow_Starter_ProjectTests.swift └── Roboflow Starter ProjectUITests │ ├── Roboflow_Starter_ProjectUITests.swift │ └── Roboflow_Starter_ProjectUITestsLaunchTests.swift └── Screenshots ├── Accounts.png ├── AppleID.png ├── RunningApp.png ├── SigningAndCapabilities.png └── XcodeSettings.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/README.md -------------------------------------------------------------------------------- /Roboflow Starter Project/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Podfile -------------------------------------------------------------------------------- /Roboflow Starter Project/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Podfile.lock -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Local Podspecs/Roboflow.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Local Podspecs/Roboflow.podspec.json -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Manifest.lock -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-Info.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-dummy.m -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Roboflow.framework -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Roboflow.framework -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-frameworks.sh -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests-umbrella.h -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.debug.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.modulemap -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests/Pods-Roboflow Starter Project-Roboflow Starter ProjectUITests.release.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-Info.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-acknowledgements.markdown -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-acknowledgements.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-dummy.m -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Roboflow.framework -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Roboflow.framework -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-frameworks.sh -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project-umbrella.h -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.debug.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.modulemap -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter Project/Pods-Roboflow Starter Project.release.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-Info.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-acknowledgements.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-dummy.m -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests-umbrella.h -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.debug.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.modulemap -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Pods-Roboflow Starter ProjectTests/Pods-Roboflow Starter ProjectTests.release.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-Info.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-dummy.m -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-prefix.pch -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow-umbrella.h -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.debug.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.modulemap -------------------------------------------------------------------------------- /Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Pods/Target Support Files/Roboflow/Roboflow.release.xcconfig -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/AppDelegate.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/DispatchTimeInterval+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/DispatchTimeInterval+Extension.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/Info.plist -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/SceneDelegate.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/UIImage+Extension.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter Project/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter Project/ViewController.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter ProjectTests/Roboflow_Starter_ProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter ProjectTests/Roboflow_Starter_ProjectTests.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter ProjectUITests/Roboflow_Starter_ProjectUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter ProjectUITests/Roboflow_Starter_ProjectUITests.swift -------------------------------------------------------------------------------- /Roboflow Starter Project/Roboflow Starter ProjectUITests/Roboflow_Starter_ProjectUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Roboflow Starter Project/Roboflow Starter ProjectUITests/Roboflow_Starter_ProjectUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Screenshots/Accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Screenshots/Accounts.png -------------------------------------------------------------------------------- /Screenshots/AppleID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Screenshots/AppleID.png -------------------------------------------------------------------------------- /Screenshots/RunningApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Screenshots/RunningApp.png -------------------------------------------------------------------------------- /Screenshots/SigningAndCapabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Screenshots/SigningAndCapabilities.png -------------------------------------------------------------------------------- /Screenshots/XcodeSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboflow/roboflow-ios-starter/HEAD/Screenshots/XcodeSettings.png --------------------------------------------------------------------------------