Hello, When running Cupcake release in my SDK I noticed that the secure table in settings db does not contain what is defined in [platform/ frameworks/base.git] / core / java / android / provider / Settings.java.
Here is the ADB output: sqlite3 /data/data/com.android.providers.settings/databases/ settings.db sqlite3 /data/data/com.android.providers.settings/databases/ settings.db SQLite version 3.5.9 Enter ".help" for instructions sqlite> .tables .tables android_metadata bookmarks secure bluetooth_devices gservices system sqlite> .dump secure .dump secure BEGIN TRANSACTION; CREATE TABLE secure (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT UNIQUE ON CONFLICT REPLACE,valu e TEXT); INSERT INTO "secure" VALUES(1,'bluetooth_on','0'); INSERT INTO "secure" VALUES(2,'data_roaming','0'); INSERT INTO "secure" VALUES(3,'install_non_market_apps','0'); INSERT INTO "secure" VALUES(4,'location_providers_allowed','network'); INSERT INTO "secure" VALUES(5,'network_preference','1'); INSERT INTO "secure" VALUES(6,'usb_mass_storage_enabled','1'); INSERT INTO "secure" VALUES(7,'wifi_on','0'); INSERT INTO "secure" VALUES (8,'wifi_networks_available_notification_on','1'); INSERT INTO "secure" VALUES (9,'enabled_input_methods','com.example.android.softkeyboard/.SoftKeyboar d'); INSERT INTO "secure" VALUES (19,'default_input_method','com.example.android.softkeyboard/.SoftKeyboar d'); INSERT INTO "secure" VALUES(20,'adb_enabled','1'); CREATE INDEX secureIndex1 ON secure (name); COMMIT; Would anyone know what could be wrong? Thanks, Laurent --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

