Create example application
This commit is contained in:
parent
edf94325d8
commit
d9ba8c5e27
24 changed files with 322 additions and 52 deletions
|
|
@ -3,14 +3,16 @@
|
|||
package="org.fnives.library.reloadable.module.hilt">
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:name=".ExampleApplication"
|
||||
android:allowBackup="false"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.HiltReloadableModule">
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:name=".LoginActivity"
|
||||
android:windowSoftInputMode="adjustResize"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
|
@ -18,6 +20,8 @@
|
|||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".MainActivity" />
|
||||
<activity android:name=".SettingsActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
Loading…
Add table
Add a link
Reference in a new issue