1.
You need an app that does essentially the same as SdkSetup: mark
Android as provisioned at the first boot, and disappear.
JBQ (wishing that Android could default as provisioned).
2.
1.
cd /data/data/com.android.providers.settings/databases
sqlite3
settings.db
INSERT INTO secure (name, value) VALUES
('device_provisioned', 1);
UPDATE "secure" SET value='0' WHERE
name='device_provisioned';
2.
development/apps/SdkSetup/Android.mk
LOCAL_MODULE_TAGS
:= eng
3.
frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java
阅读(3123) | 评论(0) | 转发(0) |