Skip to content

Commit a6efc73

Browse files
Paige McAuliffecopybara-androidxtest
authored andcommitted
Specify an empty taskAffinity on the <application> in ui_testapp.
PiperOrigin-RevId: 633976802
1 parent 7071e31 commit a6efc73

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

testapps/ui_testapp/java/androidx/test/ui/app/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
android:label="UI Test App"
4040
android:name="androidx.multidex.MultiDexApplication"
4141
android:supportsRtl="true"
42-
android:usesCleartextTraffic="true" >
42+
android:usesCleartextTraffic="true"
43+
android:taskAffinity="" >
4344
<activity android:exported="true"
4445
android:label="UI Test App"
4546
android:name=".MainActivity">

testapps/ui_testapp/java/androidx/test/ui/app/AndroidManifest_opensource.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
<application
3434
android:icon="@drawable/ic_launcher"
3535
android:label="UI Test App"
36-
android:supportsRtl="true">
36+
android:supportsRtl="true"
37+
android:taskAffinity="">
3738
<activity android:exported="true"
3839
android:label="UI Test App"
3940
android:name=".MainActivity">

0 commit comments

Comments
 (0)