Reputation: 1719
In my Android applications I would like to check if the APN settings set is the preferred APN.
Can I have a list of APN in android?
Upvotes: 1
Views: 7302
Reputation: 11038
Key thing is the content provider URI: "content/telephony/carriers".
Please check this example of APN list handling:
Upvotes: 1
Reputation: 19
You have two databases, on keeps list of all the APN's that can be used, and second is preferred APN. Construct your list from one, and get preferred APN from another.
Upvotes: 0
Reputation: 17278
The preferrede access point name depends on the network provider. You don't really want a list of APN's for all the phone companies in the whole world...?
Upvotes: 0