Add no actionbar theme to hilt

pull/1729/head
takahirom 2 weeks ago
parent e0f30acddd
commit 86e38418d5
No known key found for this signature in database
GPG Key ID: 74C748A90802F104

@ -17,7 +17,14 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application> <application>
<activity android:name=".HiltComponentActivity" /> <!--
Use a no-action-bar theme to prevent overlapping with the action bar during tests.
Theme_Material_Light_NoActionBar is the base theme used by the production app.
-->
<activity
android:theme="@android:style/Theme.Material.Light.NoActionBar"
android:name=".HiltComponentActivity"
/>
</application> </application>
</manifest> </manifest>
Loading…
Cancel
Save