Janak Patel
Janak Patel

Reputation: 1

Sending SMS in Background

Help to solve this issue : When I send a large number of text messages and manage log in text file in Background using My Application, I get this pop up Message after send a message: "messaging is sending a large number of sms messages android application"

Upvotes: 0

Views: 1006

Answers (2)

AADProgramming
AADProgramming

Reputation: 6345

Android imposes a SMS message per amount of time limit. The default limits for Android 4.0 were 100 messages per hour. However, with Android 4.1 it was decreased to 30 messages in 30 minutes.

During development and debugging work that you are doing, you can install SMS Limit Tool and adjust/configure the amount of messages allowed per amount of time.

Google Play Link for SMS Limit Tool:

https://play.google.com/store/apps/details?id=com.bamf.smslimittool.donate

That way, you can avoid those Android System warnings for the time being, specially during development/debugging.

Upvotes: 1

Rashad
Rashad

Reputation: 11197

OS will stop you from this, as you'll send a large number of SMS and it is suspicious so the OS will notify the user about this.

Every app declares its permissions when you install it. It doesn’t request permissions — you can’t actually control these permissions. The app tells you what it requires, and you can take it or leave it. Android apps must declare permissions for nearly everything, from Internet access and writing to the SD card to monitoring your location and sending SMS messages.

Upvotes: 0

Related Questions