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

Commit dcbc073c authored by Eugene Susla's avatar Eugene Susla
Browse files

Don't log incomplete sms apps

It's suspicious for an app ro register for SMS_DELIVER broadcast but lack
required components to be considered for an sms app, but we can't do much
about it.

Test: presubmit
Fixes: 139274708
Change-Id: I0932a3d788da8a1535893615ed34a0970aebf865
parent c7ccc2cd
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -425,9 +425,6 @@ public final class SmsApplication {
            final SmsApplicationData smsApplicationData = receivers.get(packageName);
            if (smsApplicationData != null) {
                if (!smsApplicationData.isComplete()) {
                    Log.w(LOG_TAG, "Package " + packageName
                            + " lacks required manifest declarations to be a default sms app: "
                            + smsApplicationData);
                    receivers.remove(packageName);
                }
            }