Set intent flags for notifying messaging app.
Bug: 65464017
Test: Build Android with change and verify that SendRequest does not
crash when confirmation pdu is received and persisted inside the
database after sending an MMS through non-default messaging app.
Change-Id: Ib6f397c10f4f92dfd2a35cd139a3857472fb93c1
diff --git a/src/com/android/providers/telephony/ProviderUtil.java b/src/com/android/providers/telephony/ProviderUtil.java
index 4234b06..cd0f351 100644
--- a/src/com/android/providers/telephony/ProviderUtil.java
+++ b/src/com/android/providers/telephony/ProviderUtil.java
@@ -109,6 +109,7 @@
if (Log.isLoggable(TAG, Log.VERBOSE)) {
Log.d(TAG, "notifyIfNotDefaultSmsApp - called from " + callingPackage + ", notifying");
}
+ intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.sendBroadcast(intent);
}