feat(android): introduce a separate SearchActivity

This commit is contained in:
Harsh Shandilya 2023-11-04 02:42:21 +05:30
parent ed81ceaa94
commit f636b56ee3
No known key found for this signature in database
5 changed files with 110 additions and 117 deletions

View file

@ -132,6 +132,17 @@
<data android:scheme="https" />
</intent-filter>
</activity>
<activity
android:name=".SearchActivity"
android:configChanges="colorMode|density|fontScale|keyboard|keyboardHidden|layoutDirection|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
android:exported="true"
android:label="Claw Search"
android:theme="@style/Theme.Claw">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"