├── .gitignore ├── CarSample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CarSample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CarPlaySceneDelegate.swift ├── CarSample.entitlements ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── CarSampleTests ├── CarSampleTests.swift └── Info.plist ├── CarSampleUITests ├── CarSampleUITests.swift └── Info.plist └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/.gitignore -------------------------------------------------------------------------------- /CarSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CarSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CarSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CarSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/AppDelegate.swift -------------------------------------------------------------------------------- /CarSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CarSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CarSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CarSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CarSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CarSample/CarPlaySceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/CarPlaySceneDelegate.swift -------------------------------------------------------------------------------- /CarSample/CarSample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/CarSample.entitlements -------------------------------------------------------------------------------- /CarSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/Info.plist -------------------------------------------------------------------------------- /CarSample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/SceneDelegate.swift -------------------------------------------------------------------------------- /CarSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSample/ViewController.swift -------------------------------------------------------------------------------- /CarSampleTests/CarSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSampleTests/CarSampleTests.swift -------------------------------------------------------------------------------- /CarSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSampleTests/Info.plist -------------------------------------------------------------------------------- /CarSampleUITests/CarSampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSampleUITests/CarSampleUITests.swift -------------------------------------------------------------------------------- /CarSampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/CarSampleUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/below/CarSample/HEAD/README.md --------------------------------------------------------------------------------