Basic search implementation.

This commit is contained in:
Andres Gomez, Thomas (ITDV CC) - AF (ext) 2023-07-18 21:21:52 +02:00
parent dfc6c4e673
commit af5fb8f33c
21 changed files with 806 additions and 298 deletions

View file

@ -9,19 +9,23 @@
<application
android:name=".MainApplication"
android:allowBackup="true"
android:colorMode="wideColorGamut"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Lexique"
android:theme="@style/Theme.Lexicon.NoActionBar"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.Lexique">
android:screenOrientation="portrait"
android:theme="@style/Theme.Lexicon.Starting"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -29,5 +33,4 @@
</intent-filter>
</activity>
</application>
</manifest>