user10085224
user10085224

Reputation:

Does UIApplication.shared.open(url) count as encryption?

I’m having trouble understanding the Export Compliance Information on App Store Connect In my app I use a simple piece of code to just open a webpage

if let url = URL(string: "https://test.com") {
     UIApplication.shared.open(url)
}

Do I need to mark that I use encryption because of this? If so do I qualify for exemptions?

Upvotes: 0

Views: 85

Answers (1)

Same7Farouk
Same7Farouk

Reputation: 907

No you don't need to mark that you uses encryption.

Upvotes: 1

Related Questions