Post

Replies

Boosts

Views

Activity

Reply to Scary email from Google Firebase (Client access to your Cloud Firestore database expiring in 4 day(s))
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; }
Apr ’24
Reply to Convert View to Image for Share
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 }
Apr ’24
Reply to Family Controls Request Form
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,
Apr ’24