make telephonyProvider tests run in their own process
rather than the phone process, so that they don't interfere
with phone process in case there are other tests running
right after them.

Bug: 192303918
Test: atest
Change-Id: I1e484559da5e789c176b639e9a91a27a17c7e102
diff --git a/Android.bp b/Android.bp
index 3b65737..cd24b24 100644
--- a/Android.bp
+++ b/Android.bp
@@ -32,3 +32,11 @@
     name: "telephonyprovider-assets-carrierlist",
     srcs: ["assets/latest_carrier_id/carrier_list.*"],
 }
+
+// used to share src with unit test app
+filegroup {
+    name: "telephonyprovider-shared-srcs",
+    srcs: [
+        "src/**/*.java",
+    ],
+}