Add new dependencies

This commit is contained in:
Shinokuni 2023-02-28 22:05:32 +01:00
parent 3a0a8d5c05
commit 6468d9d733
3 changed files with 12 additions and 0 deletions

View File

@ -62,6 +62,11 @@
android:launchMode="singleTask"
android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".item.ItemActivity"

View File

@ -53,6 +53,9 @@ android {
}
dependencies {
implementation project(':api')
implementation project(':db')
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'

View File

@ -78,6 +78,7 @@ dependencies {
def room_version = "2.3.0"
api "androidx.room:room-runtime:$room_version"
api "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-rxjava2:$room_version"
androidTestImplementation "androidx.room:room-testing:$room_version"
@ -93,4 +94,7 @@ dependencies {
api "io.insert-koin:koin-core:$rootProject.ext.koin_version"
api "io.insert-koin:koin-android:$rootProject.ext.koin_version"
api "io.insert-koin:koin-android-compat:$rootProject.ext.koin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
}