Android without sim card
Here's how I managed to use android without a sim card:
Credits goes to this person: http://android-tricks.blogspot.com/2009/01/using-adp1-without-sim-card.html
Connect the device to your computer using the USB cable. You should be able to see a listing for your device if you run adb devices. Then execute the following commands.
Credits goes to this person: http://android-tricks.blogspot.com/2009/01/using-adp1-without-sim-card.html
Connect the device to your computer using the USB cable. You should be able to see a listing for your device if you run adb devices. Then execute the following commands.
- $ adb shell
- $ su
- $ cd /data/data/com.android.providers.settings/databases
- $ sqlite3 settings.db
- INSERT INTO system (name, value) VALUES ('device_provisioned', 1);
- .exit
- $ reboot
- $ adb shell
- am start -a android.intent.action.MAIN -n com.android.settings/.Settings
Comments