If you are a Google Android phone user then you might be facing a problem of limited message sending. Hence the developers have restricted for about only 100 messages to be delivered in just one hour which is seriously a very low limit even if the case is with me, as i have a really lot of messages to be send and receive continuously.
So in-order to over come this restriction we have found a simple trick which allows you to increase the sms sending limit or through this hack you can even remove the limit. Again this tweak is brought to you from XDA Developers.
In order to apply this tweak you have to insert a couple of commands in the terminal area of your Android powered device or you can even use your computer and adb (Android Debug Bridge) to insert the commands. After successful implementation of the tweak on you phone you can extend the limit of sending message from 100 to what ever you like or you can even remove the limitations.
How to remove SMS sending limit ?
Open command shell and enter the following command :
adb shell
sqlite3 /data/data/com.android.providers.settings/databases/settings.db
After entering the command you will be displayed with a : sqlite>
Enter the following command to make change with the limit predefined
INSERT INTO gservices (name, value) VALUES(’sms_outgoing_check_max_count’, 101);
(change 101 to your new limit)
If you want to turn off the limit enter the following command:
INSERT INTO gservices (name, value) VALUES(’sms_outgoing_check_interval_ms’, 0);
Reboot your device and you are done.