├── CarPlayUnleashed.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── fotidim.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CarPlayUnleashed ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-1024.png │ │ ├── icon-120.png │ │ ├── icon-180.png │ │ ├── icon-40.png │ │ ├── icon-58.png │ │ ├── icon-60.png │ │ ├── icon-80.png │ │ └── icon-87.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CarPlay.storyboard ├── CarPlayUnleashed.entitlements ├── CarPlayViewController.swift ├── Info.plist └── ViewController.swift └── README.md /CarPlayUnleashed.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CarPlayUnleashed.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CarPlayUnleashed.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CarPlayUnleashed.xcodeproj/xcuserdata/fotidim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed.xcodeproj/xcuserdata/fotidim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CarPlayUnleashed/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/AppDelegate.swift -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-120.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-180.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-58.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-60.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-80.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/AppIcon.appiconset/icon-87.png -------------------------------------------------------------------------------- /CarPlayUnleashed/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CarPlayUnleashed/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CarPlayUnleashed/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CarPlayUnleashed/CarPlay.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/CarPlay.storyboard -------------------------------------------------------------------------------- /CarPlayUnleashed/CarPlayUnleashed.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/CarPlayUnleashed.entitlements -------------------------------------------------------------------------------- /CarPlayUnleashed/CarPlayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/CarPlayViewController.swift -------------------------------------------------------------------------------- /CarPlayUnleashed/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/Info.plist -------------------------------------------------------------------------------- /CarPlayUnleashed/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/CarPlayUnleashed/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fotiDim/CarPlayUnleashed/HEAD/README.md --------------------------------------------------------------------------------