Add android:exported tag

These are now required to be explicitly specified for
apps targetting API 31.

Bug: 195988762
Test: make
Change-Id: Ib7852498d75746d07ea035ba1dc9302eb0d9d7ac
diff --git a/tests/java_api/CannyLive/AndroidManifest.xml b/tests/java_api/CannyLive/AndroidManifest.xml
index e7e3299..4764b8f 100644
--- a/tests/java_api/CannyLive/AndroidManifest.xml
+++ b/tests/java_api/CannyLive/AndroidManifest.xml
@@ -16,7 +16,8 @@
         android:theme="@style/AppTheme" >

         <activity

             android:name="com.android.example.cannylive.MainActivity"

-            android:label="@string/app_name" >

+            android:label="@string/app_name"

+            android:exported="true" >

             <intent-filter>

                 <action android:name="android.intent.action.MAIN" />

                 <category android:name="android.intent.category.LAUNCHER" />