6v agile
6v agile

Reputation: 1

Does shared library (.so) need to change if my IOS app support IPV6

Apple announced that IOS 9 will support IPV6-only network services. All apps submitted to the App store must support IPV6.

Now, My app uses a shared library(.so), the library uses IPV4-specific Apis. so I don't know whether the library needs to change.

Can anyone answer my question?

Upvotes: 0

Views: 102

Answers (2)

David Ansermot
David Ansermot

Reputation: 6112

It simple to answer.

1) Test your library over ipv6.
2.1) It's ok so you don't have any change to do
2.2) It fails, you need to investigate and do some changes.

Upvotes: 0

Jamil
Jamil

Reputation: 29

If your app uses IPv4-specific APIs or hard-coded IP addresses, you will need to make some changes. Learn how to ensure compatibility by reading Supporting IPv6 DNS64/NAT64 Networks and watch Your App and Next Generation Networks.You can check some other detail here

Upvotes: 1

Related Questions