use correct URL to notify sms provider changes

Android system has recently enforced valid authorities for Uri
Notifications, as a result passing wrong url to PackageManager
API#resolveContentProvider will throw a security exception rather
than a silent failure. This change exposes some hidden
bug inside SmsProvider due to wrong passed url which then cuased
malfunction of SMS/MMS due to unhandled security exceptions.
Instead we should follows the rules to always has authority included
in the URI

Bug: 35792675
Test: Manual
Change-Id: I327db9d7cb019088ef5fc055ab0e8d06a338ab42
Merged-in: I327db9d7cb019088ef5fc055ab0e8d06a338ab42
diff --git a/src/com/android/providers/telephony/SmsProvider.java b/src/com/android/providers/telephony/SmsProvider.java
index da8ad50..eca18a6 100644
--- a/src/com/android/providers/telephony/SmsProvider.java
+++ b/src/com/android/providers/telephony/SmsProvider.java
@@ -632,8 +632,12 @@
             db.insert(TABLE_WORDS, Telephony.MmsSms.WordsTable.INDEXED_TEXT, cv);
         }
         if (rowID > 0) {
-            Uri uri = Uri.parse("content://" + table + "/" + rowID);
-
+            Uri uri;
+            if (table == TABLE_SMS) {
+                uri = Uri.withAppendedPath(url, "/" + rowID);
+            } else {
+                uri = Uri.withAppendedPath(url, "/" + table + "/" + rowID );
+            }
             if (Log.isLoggable(TAG, Log.VERBOSE)) {
                 Log.d(TAG, "insert " + uri + " succeeded");
             }