Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ViratAtAndroid committed Oct 27, 2023
1 parent a277bea commit e48ffd3
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 657 deletions.
30 changes: 15 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

android {
namespace 'com.example.jetpack_compose_all_in_one'
compileSdk 33
compileSdk 34

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
Expand All @@ -20,7 +20,7 @@ android {
defaultConfig {
applicationId "com.example.jetpack_compose_all_in_one"
minSdk 26
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"

Expand All @@ -41,11 +41,11 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}
buildFeatures {
compose true
Expand Down Expand Up @@ -138,7 +138,7 @@ dependencies {
implementation 'com.google.dagger:hilt-android:2.45'
kapt 'com.google.dagger:hilt-android-compiler:2.45'
kapt "androidx.hilt:hilt-compiler:1.0.0"
implementation 'androidx.hilt:hilt-navigation-compose:1.1.0-alpha01'
implementation 'androidx.hilt:hilt-navigation-compose:1.1.0-rc01'

// ktx activity with view model injection
implementation 'androidx.activity:activity-ktx:1.7.2'
Expand All @@ -147,21 +147,21 @@ dependencies {
implementation "androidx.compose.runtime:runtime-livedata:$compose_version"

// Room database
kapt 'androidx.room:room-compiler:2.5.1'
implementation 'androidx.room:room-runtime:2.5.1'
kapt 'androidx.room:room-compiler:2.6.0'
implementation 'androidx.room:room-runtime:2.6.0'

// Coil
implementation("io.coil-kt:coil-compose:2.2.0")
implementation("io.coil-kt:coil-compose:2.4.0")

//landscape - glide for compose
implementation "com.github.skydoves:landscapist-glide:1.5.0"

implementation 'com.google.maps.android:maps-compose:2.11.4'
implementation 'com.google.android.gms:play-services-maps:18.1.0'
implementation 'com.google.android.gms:play-services-maps:18.2.0'

// LiveData
// implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2'
implementation 'com.google.android.gms:play-services-location:21.0.1'

// camera with ml-kit
Expand All @@ -180,9 +180,9 @@ dependencies {
implementation "com.airbnb.android:lottie-compose:6.0.1"

//Secured Shared Preference
implementation "androidx.security:security-crypto:1.1.0-alpha04"
implementation "androidx.security:security-identity-credential:1.0.0-alpha01"
implementation "androidx.security:security-crypto-ktx:1.1.0-alpha04"
implementation "androidx.security:security-crypto:1.1.0-alpha06"
implementation "androidx.security:security-identity-credential:1.0.0-alpha03"
implementation "androidx.security:security-crypto-ktx:1.1.0-alpha06"

// Stripe
implementation "com.stripe:stripe-android:20.17.0"
Expand All @@ -196,7 +196,7 @@ dependencies {
testImplementation "androidx.paging:paging-common:$paging_version"

// Jetpack Compose Integration
implementation "androidx.paging:paging-compose:3.2.0-rc01"
implementation "androidx.paging:paging-compose:3.3.0-alpha02"

//Graph QL
implementation 'com.apollographql.apollo3:apollo-runtime:3.2.1'
Expand Down

This file was deleted.

Loading

0 comments on commit e48ffd3

Please sign in to comment.