Questions tagged [carplay]

CarPlay is an iOS-car interface announced by Apple in March, 2014.

166 questions
1
vote
1 answer

Requesting CarPlay entitlement

The documentation from apple states: Select Identifiers in the menu on the left. Select your app’s App ID. Choose the Additional Capabilities tab. Enable the CarPlay capabilities that your app requires. There is no Additional Capabilities Tab…
gg_ndy
  • 11
  • 2
1
vote
0 answers

Black screen on flutter engine initialization in AppDelegate

I have a Flutter app that I want to use Carplay with. There was an issue with opening the app from Carplay and it required moving FlutterEngine initialization to AppDelegate. Now it's working fine, but I get a black screen between the splashscreen…
Redc4ke
  • 63
  • 6
1
vote
0 answers

CarPlay Quick Ordering (Payment Integration)

How to handle the Payment Integration when develop CarPlay Quick Ordering app.
1
vote
1 answer

How to get image from random byte array

I'm working with decoder for Apple CarPlay which originally is using WebRTC and html video as display for it. I'm trying to replace html with Fyne image refresh. Current source code looks like that duration := time.Duration((float32(1) /…
1
vote
1 answer

Create a list for CarPlay

So I am currently having to manually add new stations to our CarPlay app. However we have a JSON which our app uses for iPhone and iPad. So I am wondering how do I create a list that uses this information instead of me manually creating it. func…
Russell Harrower
  • 778
  • 1
  • 6
  • 20
1
vote
1 answer

Tint color for CarPlay UI

Is there a way to change the global (or for separate UI elements) tint color for CarPlay UI? I can't find any information about this. I'm trying: func templateApplicationScene(_ templateApplicationScene: CPTemplateApplicationScene, …
algrid
  • 5,600
  • 3
  • 34
  • 37
1
vote
0 answers

How to attach Carplay to project iOS12 without scenes?

I am working on my iPhone parking app (deployment at iOS 12). I've finished to develop CarPlay app using UIApplicationSceneManifest in Info.plist file. I created CarPlaySceneDelegate class (conformed to CPTemplateApplicationSceneDelegate) as…
Daniel
  • 11
  • 2
1
vote
1 answer

CarPlay CPNowPlayingTemplate player buttons doesn't work

However I implement the proper MPRemoteCommandCenter functions, the playback buttons are not responsive at all in carplay app. (It works correctly with CarPlay before iOS 14, using MPPlayableContentManager) Non of the MPRemoteCommandCenter callbacks…
1
vote
1 answer

How can support iOS15 CarPlay from iOS12 app

I have an app that has car play feature and it supports ios12+. Recently Apple releases iOS15 and old CarPlay is not working anymore. (looks like few apis became 'not working' status from 'deprecated' status.) iOS15 CarPlay needs iOS13 style project…
WoffOVkee
  • 435
  • 3
  • 16
1
vote
0 answers

Invalid skip forward/backward icons in CarPlay for specific intervals

I'm trying to develop Now playing screen in CarPlay and I've some issues with visual representation of buttons connected with commands skipForwardCommand/skipBackwardCommand When I set property preferredIntervals (link) to standard intervals like…
1
vote
1 answer

Testing CarPlay Audio using the simulator

I have developed an iOS radio audio app using Swift / UIKit and everything works well. I want to integrate wit CarPlay and got the required entitlements. I believe I have set everything up right for the most part as I can see the CPListTemplate with…
1
vote
0 answers

SwiftUI + CarPlay - audio player

So, we have the correct permissions to run our app on CarPlay - Apple approved. However they are talking about it being template based, and all we need to do is connect into the following commands. MPPlayableContent and the media nowplaying…
RussellHarrower
  • 6,470
  • 21
  • 102
  • 204
1
vote
1 answer

UI tests for CarPlay

Is it possible to add UI tests for CarPlay using XCTest framework? func testExample() throws { let app = XCUIApplication() app.launch() } This is the basic UI test that I have but it does not launch the extended display for…
nishith Singh
  • 2,968
  • 1
  • 15
  • 25
1
vote
1 answer

How to launch app in CarPlay Dashboard after click CPDashboardButton in CPDashboardController

I have navigation app and now I'm developing CarPlay Dashboard. I can't launch InterfaceController after click button in CPDashboard. My button code: let searchButton = CPDashboardButton(titleVariants: ["Find"], subtitleVariants: ["place"], image:…
1
vote
1 answer

CarPlay - Show Now Playing screen in iOS 13

My app is already the current "now playing app" on the phone (i.e. all the required info are provided to MPNowPlayingInfoCenter) and it correctly shows in the lock screen, with artist name, track title, artwork image, etc. According to the docs,…