All Questions
126 questions
-1
votes
0
answers
19
views
Question: Determining Layout Direction for CarPlay (iOS 16)
I’m working with CarPlay on iOS 16 and trying to determine the layout direction (left-to-right or right-to-left). However, I’m encountering some issues:
interfaceController.carTraitCollection....
0
votes
0
answers
14
views
CPNowPlayingTemplate does not update CPNowPlayingShuffleButton state after changing shuffle mode
I am integrating CarPlay functionality in my existing iOS Music App. I have added Shuffle button in CPNowPlayingTemplate. CarPlay simulator is showing this button but it is not updating its state when ...
-2
votes
1
answer
36
views
how to implement sorting in carplay list template in music app flutter
I’m building a music app in Flutter, and I’m using the flutter_carplay plugin to integrate iOS CarPlay functionality. On the CarPlay interface, there’s an "A-Z" sorting option that’s ...
1
vote
1
answer
93
views
Swift - CarPlay - CPListTemplates do not show title
I am implementing car play for my iOS app using swift
When creating the Tab Bar Template (CPTabBarTemplate) I am creating it using 4 CPListTemplate items
let listTemplate = CPListTemplate(title: "...
0
votes
1
answer
96
views
React Native CarPlay app not loading JavaScript when phone app is closed
I'm developing a React Native app with CarPlay support using the react-native-carplay library. The CarPlay interface works correctly when the phone app is open, but it fails to load the JavaScript ...
0
votes
1
answer
97
views
CarPlay using CPListTemplate
I am new to Carplay development and this is my first app. Could someone explain on how to display three rows within a list item?
Currently I have the below
I want to achieve the below,
I want one ...
0
votes
1
answer
54
views
How to Make a Phone Call Directly from CarPlay Without Smartphone Confirmation?
I am developing an application for CarPlay, and I would like the user to be able to make a call directly from CarPlay when they tap the "make a call" button. However, right now, it opens the ...
0
votes
0
answers
44
views
CarPlay Stream MP3 with netmaui not showing info playing
I'm doing an IOS App with net.MAUI and i would like to reproduce mp3 audio from url.
I'm doing this with this code...
private async void PlayMp3(string fileName)
{
try
{
...
0
votes
0
answers
40
views
Disconnect iPhone player when is phone connected to CarPlay device
I am working on radio app for iPhone.
app works fine on iPhone. Now I am supporting to CarPlay as well.
iPhone app is basically developed using ReactNative and using React-Native bridge I am ...
0
votes
0
answers
70
views
ios carplay implementation without using scene lifecycle
I'm trying to imeplement CarPlay into a legacy Cordova app that uses AppDelegate inernally.
I can't seem to be able doing it as the CarPlay API seems to require UIApplicationSceneManifest while the ...
2
votes
0
answers
64
views
How to navigate to the map application in Carplay when integrating Flutter application with Carplay?
In the application I made with Flutter, I integrated CarPlay with the flutter_carplay package. When an item is clicked on the POI screen in Carplay, it needs to open the map in Carplay and navigate to ...
1
vote
0
answers
132
views
Apple CarPlay add image into Alert (CPAlertTemplate)
I want to add image into apple CarPlay Default CPAlertTemplate function.
Here is my code:
I want to add image along with alert title, description.
Heading
func updateCarPlayTemplate(title: String) {...
-2
votes
1
answer
103
views
CarPlay integration for a VoIP app without a template
Our VoIP app already implements CallKit and Siri. So, within the iPhone, we can start calls using Siri. These are prerequisites for the CarPlay integration.
Our deployment target is iOS 14, so to ...
0
votes
0
answers
65
views
Display prompt on carplay device if user is not logged in App on phone, react native iOS swift
This is my first project in React-Native that too with CarPlay.
Now the code is already done by some other team.
My first task here is, whenever I open CarPlay app, I need to check if the user is ...
3
votes
1
answer
291
views
Access Flutter app from CarPlay screen without opening app first
I have Flutter application - simple online player that uses flutter_carplay and audio_service. I release this app to iOS only.
When the app starts, it loads items that can be played. This works as ...