No data after July 9th for me as well.
Post
Replies
Boosts
Views
Activity
I had the issue in the past and I just fixed it by adding some 10 trailing spaces in the end. Not sure if anyone has a better fix for this.
I am facing same issue as well from last 2 days.
Check the security rules of your project. If you are using the default security rules that are created by firebase when you start your project, that might be expiring. You can either modify the expiration date in the rule ( Not recommended) or create some basic security rules like match /{document=**} { allow read, write: if request.auth != null; }
I figured out the issue. While updates from health data are immediate in sandbox, you receive updates at hourly rate in production.
It is now resolved. I got the approval in 3 weeks.
It generally takes a few hours before custom codes become active. how long ago did you generate them?
you can use NEHotspotNetwork and then check if network has a security code or not.
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
}
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 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()
}
}
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!)"
It was a temporary issue and was resolved on it's own
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,
Hey,
How long did it take for your request to get approved?
Thanks,