Skip to content

Commit

Permalink
update sdk and dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
infinite-dev22 committed Mar 24, 2024
1 parent 96f9bcd commit 2b0b3bc
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {

android {
namespace 'org.infinite.mantra'
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "org.infinite.mantra"
minSdk 21
targetSdk 33
targetSdk 34
versionCode 2
versionName "1.0.1"

Expand All @@ -25,43 +25,44 @@ android {
compileOptions {
// Enable support for the new language APIs
// coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
buildFeatures {
viewBinding true
}
buildToolsVersion '34.0.0'
}

dependencies {

implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.2.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.appcompat:appcompat:1.6.1'

// The view calendar library
implementation 'com.kizitonwose.calendar:view:2.0.1'

// The compose calendar library
implementation 'com.kizitonwose.calendar:compose:2.0.1'

implementation 'com.google.android.material:material:1.7.0'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'com.github.mreram:showcaseview:1.4.1'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation "androidx.preference:preference:1.2.0"
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation "androidx.preference:preference:1.2.1"
implementation 'com.github.shuhart:material-calendar:1.1.0'
implementation 'com.takisoft.preferencex:preferencex:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.navigation:navigation-fragment:2.5.3'
implementation 'androidx.navigation:navigation-ui:2.5.3'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
implementation 'androidx.navigation:navigation-fragment:2.7.7'
implementation 'androidx.navigation:navigation-ui:2.7.7'
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
}

0 comments on commit 2b0b3bc

Please sign in to comment.