码迷,mamicode.com
首页 > 其他好文 > 详细

如何读取wpa_supplicant.conf文件

时间:2015-01-19 19:09:08      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

root后,如何复制wpa_supplicant.conf文件


如何做:


首先通过单独的system进程,拷贝该文件到data分区,任意一个包名下面:/data/data/com.XXXX.android/ 下面


再在主线程里面从该data分区目录下来,拷贝到sdcard下面。


为什么这样做:


同时设置了:android:sharedUserId="android.uid.system"   android:process="system"   是不可以访问sdcard的。


具体怎么做:


主线程如下设置:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxxxxxxx"
    android:sharedUserId="android.uid.system"
    android:versionCode="20150105"
    android:versionName="1.0" >


单独system如何设置:

<service
            android:name="xxxxxxxx.BackupWifiService"
            android:exported="true"
            android:process="system" >
            <intent-filter>
                <action android:name="xxxxxxxxxx" />
            </intent-filter>
        </service>




如何读取wpa_supplicant.conf文件

标签:

原文地址:http://blog.csdn.net/huliang289047600/article/details/42876121

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!