It says on this post, that App Clips support the "Photos" Library. However, whenever I try to save a photo to the user's camera roll, an "Unknown Error" occurs.
I tried requesting library access with:
switch (status)
{
case .authorized:
// Permission Granted
print("Photo Library Authorized")
case .denied:
// Permission Denied
print("Photo Library User Denied")
default:
print("Photo Library Restricted")
}
}
but the result is always permission denied. Can you not save photos to the camera roll from an App Clip? This seems like it would be very basic, useful functionality
Post
Replies
Boosts
Views
Activity
When opening our App Clip from a Live Activity, the iOS system Handoff alert blocks our app on open. It is reproducible 100% of the time. The description in the system alert is: Waiting for Handoff to {My App}. We never had this issue before and believe it is related to iOS 18. I don't have Handoff enabled anywhere in my app.
All uses of NSUserActivity explicitly block handoff
userActivity.isEligibleForHandoff = false
We have been able to locate this same issue in other iOS apps that use Live Activities and App Clips. Is this an iOS 18 system-level bug?