changes reverted (#191)

This commit is contained in:
Kishan Kumar
2023-09-25 15:44:24 +05:30
committed by GitHub
parent 7dbeba8437
commit 7d2bb9cd35
3 changed files with 21 additions and 17 deletions

View File

@@ -3,12 +3,11 @@ plugins {
id 'org.jetbrains.kotlin.android'
id 'kotlin-kapt'
id 'com.google.dagger.hilt.android'
id 'com.google.devtools.ksp'
}
android {
namespace 'com.uitron.demo'
compileSdk 34
compileSdk 33
defaultConfig {
applicationId "com.uitron.demo"
@@ -55,7 +54,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.5.3'
kotlinCompilerExtensionVersion '1.4.3'
}
packagingOptions {
resources {
@@ -65,7 +64,7 @@ android {
}
dependencies {
implementation platform("androidx.compose:compose-bom:2023.09.01")
implementation platform("androidx.compose:compose-bom:2023.06.01")
implementation project(':navi-uitron')
implementation 'androidx.appcompat:appcompat:1.6.1'
@@ -101,13 +100,13 @@ dependencies {
//Room
def room_version = "2.5.2"
implementation "androidx.room:room-runtime:$room_version"
ksp "androidx.room:room-compiler:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.room:room-paging:$room_version"
// Hilt
implementation 'com.google.dagger:hilt-android:2.48'
implementation 'com.google.dagger:hilt-android:2.44'
kapt 'androidx.hilt:hilt-compiler:1.0.0'
kapt 'com.google.dagger:hilt-android-compiler:2.48'
kapt 'com.google.dagger:hilt-android-compiler:2.44'
implementation "androidx.hilt:hilt-navigation-compose:1.0.0"
}