Add no actionbar theme to hilt

pull/1837/head
takahirom 9 months ago
parent 1d954acfa0
commit 1fbfc0fc8b

@ -17,7 +17,14 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<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>
</manifest>
Loading…
Cancel
Save