- MVVM refactor

- Kodein DI added
 - Overhaul dirty code in views
This commit is contained in:
2023-08-25 17:44:54 +01:00
parent 815852ca98
commit cd20315b32
52 changed files with 2618 additions and 1591 deletions

View File

@@ -7,6 +7,7 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name=".di.ShiftApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@@ -16,7 +17,7 @@
<!-- Splash screen -->
<activity
android:name="com.appttude.h_mal.farmr.SplashScreen"
android:name="com.appttude.h_mal.farmr.ui.SplashScreen"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Black.NoTitleBar"
tools:ignore="LockedOrientationActivity"
@@ -27,13 +28,13 @@
</intent-filter>
</activity>
<activity
android:name="com.appttude.h_mal.farmr.MainActivity"
android:parentActivityName="com.appttude.h_mal.farmr.SplashScreen"
android:name="com.appttude.h_mal.farmr.ui.MainActivity"
android:parentActivityName="com.appttude.h_mal.farmr.ui.SplashScreen"
android:theme="@style/AppTheme.NoActionBar"
android:exported="true"/>
<provider
android:name="com.appttude.h_mal.farmr.data.ShiftProvider"
android:name="com.appttude.h_mal.farmr.data.legacydb.ShiftProvider"
android:authorities="com.appttude.h_mal.farmr"
android:exported="false" />
</application>