Maybe you can help me with this. I am trying to remove the SMS limit. I found some information on the net but am having trouble getting it to work. http://www.flixya.com/blog/2933174/How-to-Increase-the-SMS-Limit-on-Android-How to Increase the SMS Limit on AndroidIt keeps saying "No Such Table". Here is what I have so far.
B4X:
SQL1.Initialize(File.DirInternal, "settings.db", True)
lblsendingto.Text = SQL1.ExecQuerySingleResult("SELECT count(name) FROM gservices")
You should probably need to open some Android database for this. File.DirInternal means that you are opening a database local to your application. This database will not have any effect on the SMS limit.
According to the post. The database is /data/data/com.android.providers.settings/databases/settings.db
How would I initialize this? Here is the info from the post.
Open Command Terminal and enter the following:
adb shell
sqlite3 /data/data/com.android.providers.settings/databases/settings.db
Then you’ll see: sqlite>
To turn off the limit enter:
INSERT INTO gservices (name, value) VALUES(’sms_outgoing_check_interval_ms’, 0);
It worked right away for me.. (SMS Bomber >)) Id reboot to be safe.
I have an app that will do this. I ran it with Logcat running. I attached the Logcat file with the piece I think is beneficial highlighted. But I could be wrong about the highlighted part.