Skip to content

Commit

Permalink
updated library dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oliexdev committed May 20, 2024
1 parent d26361c commit b98c143
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions android_app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: "androidx.navigation.safeargs"

android {
compileSdkVersion 34
compileSdk 34
defaultConfig {
applicationId "com.health.openscale"
testApplicationId "com.health.openscale.test"
Expand All @@ -27,9 +27,6 @@ android {
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
lintOptions {
abortOnError false
}

signingConfigs {
release {
Expand Down Expand Up @@ -135,43 +132,46 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.health.openscale'
lint {
abortOnError false
}
}

dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'

implementation 'com.google.android.material:material:1.11.0-alpha01'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.navigation:navigation-fragment:2.6.0'
implementation 'androidx.navigation:navigation-ui:2.6.0'
implementation 'androidx.navigation:navigation-fragment:2.7.7'
implementation 'androidx.navigation:navigation-ui:2.7.7'
implementation "android.arch.lifecycle:extensions:1.1.1"
annotationProcessor "androidx.lifecycle:lifecycle-common-java8:2.6.1"
annotationProcessor "androidx.lifecycle:lifecycle-common-java8:2.8.0"

// MPAndroidChart
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
// Simple CSV
implementation 'com.j256.simplecsv:simplecsv:2.6'
// Blessed Android
implementation 'com.github.weliem:blessed-android:2.4.2'
implementation 'com.github.weliem:blessed-android:2.5.0'
// CustomActivityOnCrash
implementation 'cat.ereza:customactivityoncrash:2.3.0'
// AppIntro
implementation 'com.github.AppIntro:AppIntro:6.2.0'
// implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.20'
// Room
implementation 'androidx.room:room-runtime:2.5.2'
annotationProcessor 'androidx.room:room-compiler:2.5.2'
androidTestImplementation 'androidx.room:room-testing:2.5.2'
implementation 'androidx.room:room-runtime:2.6.1'
annotationProcessor 'androidx.room:room-compiler:2.6.1'
androidTestImplementation 'androidx.room:room-testing:2.6.1'
// Timber
implementation 'com.jakewharton.timber:timber:5.0.1'
// Local unit tests
testImplementation 'junit:junit:4.13.2'
// Instrumented unit tests
implementation 'androidx.annotation:annotation:1.6.0'
implementation 'androidx.annotation:annotation:1.8.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
4 changes: 2 additions & 2 deletions android_app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
classpath 'com.android.tools.build:gradle:8.4.0'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7"
}
}

Expand Down
2 changes: 1 addition & 1 deletion android_app/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip

0 comments on commit b98c143

Please sign in to comment.