compose-lobsters/app/src/debug/AndroidManifest.xml
Harsh Shandilya 4581705d56
Switch to createComposeRule
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-08-30 15:58:07 +05:30

11 lines
555 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<!--
If you don't need the activityTestRule, then you can switch to createComposeRule and add
an empty activity here for the test harness to launch. Not having this activity is what
broke my tests when I first started writing them with createComposeRule. Future me will thank
past me for writing this note here.
-->
<activity android:name="androidx.activity.ComponentActivity" />
</application>
</manifest>