https://www.cnblogs.com/sishuiliuyun/p/3754516.html
android系統把所有的APN都儲存在資料庫中,資料庫絕對路徑:/data/data/com.android.providers.telephony/databases/telephony.db。
使用adb命令可以把該資料庫匯出檢視:
adb pull /data/data/com.android.providers.telephony/databases/telephony.db e:/
獲取所有的APN的uri地址為"content://telephony/carriers"。
獲取當前使用APN的uri地址為"content://telephony/carriers/preferapn"。
adb pull /data/data/com.android.providers.telephony/databases/telephony.db .
adb pull /data/data/com.android.providers.telephony/shared_prefs/preferred-apn.xml .
refs:
Android例項剖析筆記(四) ---剖析NotePadProvider
https://www.cnblogs.com/phinecos/archive/2009/08/27/1555372.html
android7.1 新增預置的APN資訊
https://blog.csdn.net/LoongEmbedded/article/details/80817151
APN 原始碼分析 --- 增刪改查過程分析
https://blog.csdn.net/u012439416/article/details/78941125
SIM卡開機流程分析之預設APN設定
https://blog.csdn.net/check_out/article/details/66577476