Increase the SMS limit in Android (100 SMS per hour to unlimited)
Make sure you got rooted phone.
- Install Android SDK (for basic command line tools, such as ADB)
- Add Android tools to the PATH
- Turned on USB debugging on Phone
- Connect with USB Cable, USB Drivers must be installed (with SDK etc)
Open Command Terminal and enter the following:
1 | adb shell |
2 | mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system |
3 |
4 | adb shell |
5 | sqlite3 /data/data/com.android.providers.settings/databases/settings.db |
Then you’ll see:
1 | sqlite> |
Then enter the following to alter the limit
1 | 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:
1 | INSERT INTO gservices (name, value) VALUES( 'sms_outgoing_check_interval_ms' , 0); |