This is the detailed error log
"rejected distribution method because it doesn't support distributing archive"
Post
Replies
Boosts
Views
Activity
Exact same issue! Xcode Version 15.0.1 (15A507)
Did anyone contact apple support?
Works now! Thanks for fixing the issue!
Hey,
How long did it take for your request to get approved?
Thanks,
Hi All,
I also submitted a Family Controls Request Form but haven't heard back. I didn't get any case id when I submitted the request. Did you guys any case id or something to track the request?
I'm currently developing an app that requires the main target and also the app extension to both use Family Controls. Does this mean I need to request forms for both app bundles separately or just the main app?
I have this same question as well. Would appreciate any responses.
Thanks,
It was a temporary issue and was resolved on it's own
Have you tried encoding the file name and creating url from it? something like
let urlEncoded = value.addingPercentEncoding(withAllowedCharacters: .alphanumerics)
let url = "http://www.myftpserver.com/?name=\(urlEncoded!)"
You can probably overlay a ZStack with a Color view behind the VideoPlayer. Something like :
var body: some View {
ZStack {
backgroundColor
.edgesIgnoringSafeArea(.all)
VideoPlayer(player: queuePlayer)
.disabled(true)
.scaledToFit()
}
}
Since you have an app related for Family controls, can you please tell how much time did it take you to get approval for Family control entitlement?
Would appreciate if you can respond to https://developer.apple.com/forums/thread/749589
You can convert view to image with this function
func convertViewToImage( ) -> UIImage {
let view = UIHostingController(rootView: AnyView(self.body))
let size = view.view.bounds.size
view.view.frame = CGRect(origin: .zero, size: size)
let renderer = UIGraphicsImageRenderer(size: size)
let image = renderer.image { context in
view.view.layer.render(in: context.cgContext)
}
return image
}
you can use NEHotspotNetwork and then check if network has a security code or not.
It generally takes a few hours before custom codes become active. how long ago did you generate them?
It is now resolved. I got the approval in 3 weeks.
I figured out the issue. While updates from health data are immediate in sandbox, you receive updates at hourly rate in production.