I have 2017 GMC Sierra and no bluetooth so I have to use USB. It worked fine for years but as soon as I down loaded the iOS 18 update when I try to listen to music, it plays a small clip of the song then stops and forwards through the rest of the song and skips to the next. It does this with every song whether it’s a playlist or downloaded on to my phone. I hate listening to the radio and having to listen to commercials which is why I have a 1 year subscription to Apple Music. Because of this glitch I have to listen to the friggin radio in the truck and search for the radio stations I like and suffer through stupid commercials every 10 minutes. None of the updates have fixed this glitch. Please, I beg you, fix it.
Apple Developers
RSS for tagThis is a dedicated space for developers to connect, share ideas, collaborate, and ask questions. Introduce yourself, network with other developers, and foster a supportive community.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
I’m just trying to find someone who know what the diagnostic logs o my apple watch are for like sysdouagnos and the Bridge Pair Performance obviously I understand what a diagnostic logs are but it’s looks as if I need to download them still why wouldn‘t it already be running
Topic:
Community
SubTopic:
Apple Developers
I have a flutter application with Firebase token and it is working in my local as expected I loaded my application to Appstore but it is not working, can anyone help me for fix the issue.
Thank you
My current project is similar to Facebook In size. Is there an alternative to MVVM that will produce the same outcome without so many files. Performance is very poor.
My screen time report says that I’m on Google an average of 24 hrs and 4 minutes a day. How is this possible? I can’t be on Google more than 10 minutes a day let alone 24 hrs. I think it’s probably tracking whatever Google does when I’m not in the app or on the cite as part of screen time, but I can’t get it to stop. Are other people having this issue? How do I stop this so I can see my real screen time?
I bought a new Iphone 16 promax yesterday. I have 164.87 GB available. I'm running 18.2.1.... It says downloading since yesterday afternoon. I have restarted, changed regions, reset network settings...... nothing.
Topic:
Community
SubTopic:
Apple Developers
Hi! So I am not really sure how all this works.
I want to use realtime data from the trains and buses in Sweden.
This is their page: https://www.trafiklab.se/api/
As I understand it I should use GTFS data which come in Protobuf format.
I think I must convert the Protobuf-data to Swift code. Not sure if this involves json.
One file I have has the extension .pb.
I tried to use this page:
https://medium.com/@andy.nguyen.1993/protobuf-in-swift-809658ecdb22
When I write this:
$ git checkout tags/1.1.1
$ swift build -c release -Xswiftc -static-stdlib
I get this error:
"error: 'swift-protobuf': the Swift tools version specification is possibly missing a version specifier; consider using '// swift-tools-version: 6.0.3' to specify the current Swift toolchain version as the lowest Swift version supported by the project"
As you understand I am really not sure what I'm doing. Maybe there is a better way?
Any help would be highly appreciated.
For the last week or i no longer receive text verification codes from outside sources like my bank, credit card issuers etc. I’m on the iPhone beta testing OS software…
Topic:
Community
SubTopic:
Apple Developers
Hello everyone,
Since iOS 18, there has been an issue where it’s not possible to set up custom IMAP accounts using one’s own domain. However, IMAP accounts from providers like Strato or other hosting services work without any problems.
When will Apple finally resolve this issue?
Is there already a solution for the problem?
Disabling "Tracking IP" under Wi-Fi Settings doesn’t help.
Uninstalling and reinstalling the Mail app also doesn’t resolve the issue.
Thank you for your help.
It would be nice if someone from Apple could comment on this matter. Thank you very much!
Topic:
Community
SubTopic:
Apple Developers
I've been working on my mobile app project using Expo. Yesterday, when I tried to run the app again, the Expo Go in the iOS simulator got stuck on the screen showing "New update available, downloading..." and then crashed. I'm not sure what went wrong. It only provides a long error report. I ran an EAS build, which completed successfully, so I suspect the issue might be with the iOS simulator or Expo Go itself. Please help me out :(
Somehow sync is not happening on my windows machine for both icloud photos and drive. I have reinstalled the app 4-5 times every time same issue.
Topic:
Community
SubTopic:
Apple Developers
Everytime i open the app shortcuts and go to text to speech when i press play the outcome is an evil laugh. What‘s happening? Is it a bug or? Im on ios 18.3
So I am in a group chat with my family. We’ve had this groupchat established for a long time, and none of us have ever added anyone else to it. Somehow last night, a different family member joined our group chat and started texting us, but none of the original chat members added her, not even accidentally. This is the second time this has happened, and we have no idea how they are inserting themselves into our group chat. We are all iphone users, including the person that is somehow adding themselves to our group chat. All of us use different Apple ID accounts as well as different phone numbers, and that’s the same for the person adding themselves, so I’m truly at a loss for how this is happening.
Topic:
Community
SubTopic:
Apple Developers
I'm developing a workout app with a mirrored workout session. I'm having problems with sessions being out of sync. For example, when the workout is ended, it takes somewhere around a minute or two for it to actually fully end, so if during this time I start a new workout, then the sessions will be out of sync.
I am using healthStore.recoverActiveWorkoutSession() to recover the workout session but it doesn't always work very well and in particular in the case when a workout has been manually ended (but ending hasn't completed) it enters an out of sync mode.
The reason why this case is happening is because I have an third party sensor connected to this mirrored workout session and if the sensor is out of range or turned off, I end the workout. However, if the person had accidentally gone out of range, they would reconnect to the app and restart the workout as soon as they realize and in that case, when the workout hasn't fully ended, it doesn't recover appropriately.
I have spent weeks trying to debug this with no luck so any advice will be appreciated.
Hello,
I use Navigationstack in the first and second views. In this case, the second view is executed immediately and then disappears.
Is there a solution?
The code is as follows.
device = i-phone
struct ContentView: View {
@State var path: [String] = []
var body: some View {
NavigationStack(path: $path) {
VStack {
Text("Screen1")
Spacer()
Button(action: {
path.append("2nd")
}, label: {
Text("go to 2nd Screen")
})
}
.navigationDestination(for: String.self) { s in
if s == "2nd" {
let _ = print("1st screen nav path(1) = \(path)")
SecondScreen(path: $path)
let _ = print("1st screen nav path(2) = \(path)")
}
}
.onAppear {
print("1st screen on appear")
print("1st screen path = \(path)")
}
.onDisappear {
print("1st screen on disappear")
print("1st screen disa. path = \(path)")
}
.padding()
}
}
}
struct SecondScreen: View {
@State var path2: [String] = []
@Binding var path: [String]
var body: some View {
NavigationStack(path: $path2) {
VStack {
Text("2nd Screen is loaded")
Spacer()
Button(action: {
path2.append("3rd")
}
, label: {
Text("go to 3rd Screen")
})
Button(action: {
path2.removeLast()
}
, label: {
Text("back to 1st Screen")
})
}
.navigationDestination(for: String.self) { s in
if s == "3rd" {
// Text("3rd")
thirdScreen()
} else {
thirdScreen()
}
}
}
.onAppear {
print("2nd screen on appear")
print("2nd screen path = \(path)")
print("2nd screen path2 = \(path2)")
}
.onDisappear {
print("2nd screen on disappear")
print("2nd screen path = \(path)")
print("2nd screen disa. path2 = \(path2)")
}
}
}
struct thirdScreen: View {
var body: some View {
VStack {
Text("3rd Screen")
}
.onAppear {
print("3rd screen on appear")
}
.onDisappear {
print("3rd screen on disappear")
}
}
}
Topic:
Community
SubTopic:
Apple Developers
Hello :-)
I‘m not entirely sure, if I‘m on the correct Place here.
But I would like to report a Bug with tvOS 18.3 (latest beta) to the Apple Engineers!
When maximizing an app, a clear color jump occurs. The home screen is more colorful than the open app!
You can easily force this:
open an app, e.g. the App Store
back to the home screen
open the app again now you can see a color jump of the GUI!!!
The color becomes paler when the app is open. On the home screen it is more colorful again!
The problem occurs with every app! So it is a global tvOS Bug!
I can also send an example video if that's helpful!
Best regards,
Christian :-)
Topic:
Community
SubTopic:
Apple Developers
Hello,
I use Navigationstack in the first and second views. In this case, the second view is executed immediately and then disappears. Is there a solution? The code is as follows.
XCode = 15.0
device = i-phone
ContentView.txt
SecondScreen.txt
thirdScreen.txt
Here’s a detailed report you can submit to Apple Support:
Subject: Critical Issue with Emergency Reset Feature in Safety Check
Dear Apple Support Team,
I am writing to report a significant issue with the Emergency Reset feature in the Safety Check tool on iOS devices. This feature, designed to immediately revoke access to user data in emergency situations, is not functioning as intended, leaving users potentially vulnerable to data breaches or privacy violations.
Issue Details
The Emergency Reset feature fails to stop sharing permissions for certain Apple apps, specifically Fitness (linked to Apple Health) and Home (linked to HomeKit). When attempting to reset all sharing permissions using Emergency Reset, the system displays an error message stating:
“Unable to Stop Sharing. A problem occurred when attempting to stop sharing with Fitness and Home. Stop sharing directly within these apps.”
Concerns with Fitness App (Apple Health)
• The Fitness app integrates with Apple Health, which allows third-party apps to access sensitive health data, such as activity metrics, workouts, and more.
• When Emergency Reset fails, third-party apps may retain access to this data until users manually revoke permissions through Settings, which contradicts the promise of an “immediate reset.”
Concerns with Home App (HomeKit Framework)
• The Home app, which manages smart home devices via the HomeKit framework, also fails to revoke permissions during Emergency Reset.
• This could leave third-party devices or shared users with continued access to smart home settings, such as cameras, locks, and sensors, which poses a serious security risk.
Vulnerability Implications
1. Potential for Exploitation by Third Parties:
• Third-party apps and devices integrated via Apple Health or HomeKit could continue to access sensitive information if Emergency Reset fails.
• This opens a window for malicious actors to exploit incomplete revocation of permissions.
2. Emergency Situations:
• The feature is critical for users in emergencies (e.g., fleeing abusive relationships or addressing a data breach), but its reliance on manual interventions undermines its effectiveness.
• Users may not have the time or knowledge to manually revoke permissions in multiple apps during emergencies.
Broader Concerns
• The distinction between the Home app (user-facing interface) and HomeKit (framework) adds confusion. Users may believe Emergency Reset applies to all HomeKit-enabled devices, but this does not appear to be the case.
• The issue may extend to other Apple apps or third-party integrations not explicitly mentioned, creating a broader vulnerability across the iOS ecosystem.
Recommendations for Resolution
To address this critical issue, I recommend the following actions:
1. Fix Emergency Reset:
• Ensure that Emergency Reset fully revokes all sharing permissions for apps like Fitness and Home, including any linked third-party integrations.
• Conduct extensive testing to confirm the feature’s functionality across all apps and frameworks.
2. Enhance Transparency:
• Clearly communicate any limitations of the Emergency Reset feature to users, including apps or frameworks that require manual intervention.
• Provide clear in-app guidance on how to manually revoke permissions for affected apps.
3. Improve App and Framework Integration:
• Update the Fitness and Home apps to allow users to globally revoke all third-party access directly within these apps.
• Strengthen the integration between Emergency Reset and frameworks like HealthKit and HomeKit to ensure full coverage.
4. Audit and Monitor:
• Conduct a security audit of the Emergency Reset feature to identify and patch additional gaps.
• Regularly update users on progress and any enhancements made to the feature.
User’s Immediate Actions
While waiting for a resolution, I have taken the following steps to manually revoke permissions:
1. For Fitness: I reviewed and revoked third-party access in Settings > Privacy > Health > Sharing.
2. For Home: I reviewed device sharing settings in the Home app and removed shared users and devices as needed.
3. I also reviewed permissions for other apps via Settings > Privacy to ensure no unauthorized access remains.
Conclusion
The Emergency Reset feature is critical for user safety and privacy, particularly in emergencies. However, its current functionality fails to deliver on its promise of comprehensive and immediate protection, leaving users exposed to significant risks. I urge Apple to prioritize resolving these issues and strengthening this feature to maintain the high standards of privacy and security that users expect from Apple.
Thank you for your attention to this matter. I am happy to provide additional details or screenshots if needed.
Sincerely,
[Your Full Name]
[Your Contact Information]
[Your Device Model and iOS Version]
You can copy and paste this into your communication with Apple Support. Let me know if you need further revisions!
Topic:
Community
SubTopic:
Apple Developers
Good day, I would like the code for testflight on your new application, thank you.
Topic:
Community
SubTopic:
Apple Developers
I have updated my ipad 7th gen to ipados18.3 Beta last week and I realized that there is no sound at all no sound from speakers and no sound from bluetooth devices and no sound from airplay, I've checked google and reddit and alot of research people told me its a software bug, i submitted a bug report and now im still waiting for a bug fix update, youtube dosent work neither spotify aswell their UI stops working when i try to use it, So how long do i have to wait for a bug fix? Thanks apple.