Yeah still have the problem on method 2Yep still doing the annoying message
Sent from my SAMSUNG-SGH-T989 using xda app-developers app
Yeah still have the problem on method 2Yep still doing the annoying message
Sent from my SAMSUNG-SGH-T989 using xda app-developers app
My bad. I meant the messaging pop-up?Yep still doing the annoying message
Sent from my SAMSUNG-SGH-T989 using xda app-developers app
Try the adb method.Yes I do
Sent from my SAMSUNG-SGH-T989 using xda app-developers app
It worked. Thanks a lot for your solution.Hmm that record doesn't show up in my system table, so I'm not sure.
It is highly recommended that you do also edit the gservices database. Try clearing cache and davlik cache in recovery and fixing permissions. Then try again.
Sent from my SPH-L710 using xda app-developers app
Glad it worked!It worked. Thanks a lot for your solution.
Now the only thing left; how to remove 10 recipient limit when sending sms
Do you know how to do that?
Edit: of course without 3rd party application
the adb one worked?Glad it worked!
I posted a link to another thread a couple pages back. Look on the second page of this thread. However, most custom ROMs have this MMS fix implemented already.
Sent from my SPH-L710 using xda app-developers app
That's I'm interpreting from his post.the adb one worked?
Do you have SQLite Editor installed?Wasn't able to get it to work.
First option didn't work, rebooting to see that makes a difference.
Second option says sqlite3 not found.
Edit: Ended up working on my Nexus 4. Thanks.
If you have SQLite Editor installed:Tried doing this on my Nexus 4 on version 4.2.1. rooted but it doesn't seem to work =(
Any help?
So i have tried the first and second method with no luck but.....If you have SQLite Editor installed:
Open the SQLite Editor app.
Scroll down and open "Settings Storage".
Open up "secure"
Add a new record.
Set the name "sms_outgoing_check_max_count"
Set the value to "9999" or whatever you want.
Reboot!
Sent from my SPH-L710 using xda app-developers app
I used the ADB method and ran into 2 minor issues:As the tittle suggests this is a How-To in increasing the SMS/Hour Limit.
Some of you while sending a text might have had the following message pop-up.
View attachment 1262984
Sure you can simply click "Allow" but isn't doing that for every text message you send for the next hour frustrating?
Well, through a few hours browsing the Web and with the help of this thread http://forum.xda-developers.com/showthread.php?t=626771 I was able to increase the limit, thus keeping the message from popping up.
There are two methods of doing this. One requires a couple of apps, the other is done using ADB.
Remember you MUST be rooted for this to work.
The Steps
Required Apps: Root Explorer, SQLite Editor.
1. Open up Root Explorer
2. Navigate to /data/data/com.android.providers.settings/databases/settings.db (It'll ask you if you want to open the database with SQLite or with the internal viewer, choose SQLite)
3. Open the secure table
4. Hit the menu key and select New Record
5. Under name type in sms_outgoing_check_max_count
6. Under the value type in whatever you'd like, I did 9999
7. Hit Save
8. Go back once and select the table system
9. Repeat steps 4-7
10. Now navigate to /data/data/com.google.android.gsf/databases/gservices.db
11. Open the table main
12. Repeat steps 4-7.
13. Back out the home screen and reboot.
If you have SDK installed on computer, it might be easier to run the commands from there. That way you could copy and paste the commands.
ADB Method.
1.Open Command Terminal
2. Type in adb shell hit enter
3. Type in su hit enter
4. Type in sqlite3 /data/data/com.android.providers.settings/databases/settings.db hit enter
5. Type in INSERT INTO secure (name, value) VALUES('sms_outgoing_check_max_count’, 9999); hit enter
6. Type in INSERT INTO system (name, value) VALUES('sms_outgoing_check_max_count’, 9999); hit enter
7. Type in .exit hit enter (you should now see a hash tag again instead of sqlite>. If not conitune typing in .exit and hitting enter until you are)
8. Type in sqlite3 /data/data/com.google.android.gsf/databases/gservices.db
9. Type in INSERT INTO main (name, value) VALUES('sms_outgoing_check_max_count’, 9999); hit enter
10. Again exit back to where the command line has a hashtag
11. Type in reboot and hit enter.
:good::good:
Glad you got it working! With the quotes thing it can be tricky. For example " will work when using ADB through your computer but not when using ADB through Terminal on your phone, you have to use ' instead. Its weird.I used the ADB method and ran into 2 minor issues:
1. sqlite3 wasn't found, and doesn't seem to exist in my Stock TW 4.1.1 + Root anywhere except: "/data/data/com.jrummy.liberty.toolboxpro/files/sqlite3" where my install of ROM Toolbox Pro happened to install its own version luckily *Grin*. Nitrogen helped me track this down with: find / -iname sqlite3 and then I copied it to /system/xbin/ to make life a little easier
2. On the INSERT SQL statements I ran into the the closing Quote marks having to be deleted and manually typed in before they would function, seems they ended up slightly altered (formatting possibly) to the point a simple Copy/Paste wouldn't do the trick
The over all result was a success though, and I am very thankful you took the time to document this process !
Have you tried the ADB method? Also, do you mean that the changes aren't sticking upon the reboot? Like are the added records missing or are they still there and nothing is happening?I'm having issues getting this working on my Galaxy Nexus 4.2.1. I edited the files via Root explorer and SQL editor and rebooted. Followed the instruction to the dot and am having no luck still get those annoying pop ups when I exceed the messages/hour limit. I have over 100 contacts and unlimited texts and since I work for a charity organisation I send lots of texts and this gets really annoying. Any help would be appreciated. Thanks