Skip to content

Commit

Permalink
Update App Modification
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahidzbi4213 committed Aug 4, 2024
1 parent c1ad3fb commit a3b9c26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ espressoCore = "3.6.1"
lifecycleRuntimeKtx = "2.8.4"
activityCompose = "1.9.1"
composeBom = "2024.06.00"
lifecycleViewmodelAndroid = "2.8.4"



Expand All @@ -28,6 +29,7 @@ androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-toolin
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-lifecycle-viewmodel-android = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-android", version.ref = "lifecycleViewmodelAndroid" }



Expand Down
8 changes: 4 additions & 4 deletions reelsplayer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
}

buildFeatures {
Expand All @@ -52,7 +52,7 @@ dependencies {

//noinspection UseTomlInstead
implementation("androidx.lifecycle:lifecycle-runtime-compose-android:2.8.4")
implementation("androidx.lifecycle:lifecycle-runtime-compose-android:2.8.4")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose-android:2.8.4")
implementation(platform("androidx.compose:compose-bom:2024.06.00"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.material3:material3-android:1.2.1")
Expand Down

0 comments on commit a3b9c26

Please sign in to comment.