PDA

View Full Version : How to increase sms count in android OS



Genuwine1976
06-09-2010, 10:36 PM
Came across this and thought it was a good hack for Android, haven't tried it on 2.2 yet....[hide-thanks]

[Only registered and activated users can see links]

Open Command Terminal and enter the following:
adb shell
sqlite3 /data/data/com.android.providers.settings/databases/settings.db

Then you'll see: sqlite>

Then enter the following to alter the limit

INSERT INTO gservices (name, value) VALUES('sms_outgoing_check_max_count', 101);

(change 101 to your new limit)

I didnt try altering the limit so I hope it works for you guys.. but I can confirm this next one works. It completely turns off the limit altogether.

To turn off the limit enter:
INSERT INTO gservices (name, value) VALUES('sms_outgoing_check_interval_ms', 0);[/hide-thanks]