DO NOT MERGE - Mark RQ3A.210410.001 as merged

Bug: 190855093
Merged-In: Icb4677f96460009b15e2ac93f05f357b37dc664e
Change-Id: I4617f1a0ec38e9dae16c0d544ca8da3c6bc98830
diff --git a/Android.bp b/Android.bp
index 0291804..f92bd0e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -14,6 +14,10 @@
 //
 //
 
+package {
+    default_applicable_licenses: ["Android-Apache-2.0"],
+}
+
 android_app {
     name: "LinkViewer",
 
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d592836..4ec46da 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -14,34 +14,33 @@
      limitations under the License.
 -->
 
-<manifest
-        xmlns:android="http://schemas.android.com/apk/res/android"
-        package="com.android.car.linkviewer">
-    <application
-            android:allowBackup="true"
-            android:icon="@drawable/ic_app_icon"
-            android:label="@string/app_name"
-            android:supportsRtl="true"
-            android:theme="@style/AppTheme">
-        <activity android:name=".LinkViewerActivity">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+     package="com.android.car.linkviewer">
+    <application android:allowBackup="true"
+         android:icon="@drawable/ic_app_icon"
+         android:label="@string/app_name"
+         android:supportsRtl="true"
+         android:theme="@style/AppTheme">
+        <activity android:name=".LinkViewerActivity"
+             android:exported="true">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN"/>
             </intent-filter>
             <!-- Catch intents which do not specify a MIME type -->
             <intent-filter>
-                <action android:name="android.intent.action.VIEW" />
-                <category android:name="android.intent.category.DEFAULT" />
-                <category android:name="android.intent.category.BROWSABLE" />
-                <data android:scheme="http" />
-                <data android:scheme="https" />
+                <action android:name="android.intent.action.VIEW"/>
+                <category android:name="android.intent.category.DEFAULT"/>
+                <category android:name="android.intent.category.BROWSABLE"/>
+                <data android:scheme="http"/>
+                <data android:scheme="https"/>
             </intent-filter>
             <!-- Catch intents which do specify a MIME type -->
             <intent-filter>
-                <action android:name="android.intent.action.VIEW" />
-                <category android:name="android.intent.category.DEFAULT" />
-                <category android:name="android.intent.category.BROWSABLE" />
-                <data android:scheme="http" />
-                <data android:scheme="https" />
+                <action android:name="android.intent.action.VIEW"/>
+                <category android:name="android.intent.category.DEFAULT"/>
+                <category android:name="android.intent.category.BROWSABLE"/>
+                <data android:scheme="http"/>
+                <data android:scheme="https"/>
                 <data android:mimeType="text/html"/>
                 <data android:mimeType="text/plain"/>
                 <data android:mimeType="application/xhtml+xml"/>