Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6cb6ad7 authored by fionaxu's avatar fionaxu Committed by android-build-merger
Browse files

Do not allow premium SMS during SuW

am: d8764991

Change-Id: I237cdb8021aadf5d751e750e9203b6d6d5410ba8
parents 1173aa0f d8764991
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -756,6 +756,12 @@ public abstract class SMSDispatcher extends Handler {
                return true;    // not a premium short code
            }

            // Do not allow any premium sms during SuW
            if (Settings.Global.getInt(mResolver, Settings.Global.DEVICE_PROVISIONED, 0) == 0) {
                Rlog.e(TAG, "Can't send premium sms during Setup Wizard");
                return false;
            }

            // Wait for user confirmation unless the user has set permission to always allow/deny
            int premiumSmsPermission = mUsageMonitor.getPremiumSmsPermission(
                    tracker.mAppInfo.packageName);