//Wifi

adb shell
cd /data/data/com.android.providers.settings/databases
sqlite3 settings.db
select * from secure where name="wifi_on";
update secure set value=1 where name="wifi_on";
select * from secure where name="wifi_on";
reboot

 

//BT

adb shell
cd /data/data/com.android.providers.settings/databases
sqlite3 settings.db
select * from secure where name="bluetooth_on";
update secure set value=1 where name="bluetooth_on";
select * from secure where name="bluetooth_on";
reboot

 

參考:http://blog.chinaunix.net/uid-25909619-id-3554423.html

http://fecbob.pixnet.net/blog/post/36143073-android-%E7%B3%BB%E7%B5%B1%E6%94%AF%E6%8F%B4bluetooth-keypad

http://stackoverflow.com/questions/10282484/android-adb-turn-on-wifi-via-adb

 

arrow
arrow

    ooieueioo 發表在 痞客邦 留言(0) 人氣()