Are there any APIs to check if local network permission is denied by a user so as to prompt a user to enable it from settings?
Post
Replies
Boosts
Views
Activity
I have an app named, "abc xyz" on App Store. If I search for "abc xyz" on the App Store, my app is indexed at some 50th position. If I search for "the abc xyz" it is indexed at #1 position. I checked the CFBundleDisplayName and CFBundleName and do not see "the" keyword being used.
I am using DNSServiceBrowse for getting the kDNSServiceErr_PolicyDenied (-65570) error for local network access as there is no API as per https://developer.apple.com/forums/thread/663852
I released the app on AppStore but now some users are complaining about app freeze issues and eventually app crash.
I am unable to reproduce this issue on my device at all. But AppStore reviews are filled with "app freeze" and "crashes" keywords.
let pointer: UnsafePointerInt8? = NSString(string: "_services._dns-sd._udp").utf8String
var browseRef: DNSServiceRef?
DNSServiceBrowse(&browseRef, 0, 0, pointer, nil, browseCallback, nil)
DispatchQueue.global().async {
DNSServiceProcessResult(browseRef)
DNSServiceRefDeallocate(browseRef)
}
Any suggestions about how to debug this?
Trying to tap on resend button but that seems to be broken on the web. Any apple devs who can add a fix quickly? Thanks !