Hi team. Like the title, I'm figure out how to create my app so that I don't explicitly display local network privacy alerts.
https://developer.apple.com/forums/thread/664116
This thread was a little helpful, but I couldn't find a clear way.
Is there a way to automatically reject without explicitly displaying an alert, even if permission is required, such as plist settings?
Thanks.
Post
Replies
Boosts
Views
Activity
Hi team.
I've always used the manifest download link to install my test app like
itms-services://?action=download-manifest&url=https://host.sample/sampleManifest.plist
However, at the iOS 16, it was found that installation errors occurred when the value of the bundle-identifier of the manifest was set to * like
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>*</string>
</dict>
and install error logs are :
item being installed did not contain an app with bundle ID “*”, but it did contain app(s) with bundle ID ${real bundle id}
I wonder if there is a way to use it instead of real app bundle id like '*'.
thanks.