1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-29 19:20:36 +02:00

updated library dependencies

This commit is contained in:
oliexdev
2024-05-20 10:16:20 +02:00
parent d26361ce9c
commit b98c143216
3 changed files with 18 additions and 18 deletions

View File

@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: "androidx.navigation.safeargs" apply plugin: "androidx.navigation.safeargs"
android { android {
compileSdkVersion 34 compileSdk 34
defaultConfig { defaultConfig {
applicationId "com.health.openscale" applicationId "com.health.openscale"
testApplicationId "com.health.openscale.test" testApplicationId "com.health.openscale.test"
@@ -27,9 +27,6 @@ android {
sourceSets { sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString()) androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
} }
lintOptions {
abortOnError false
}
signingConfigs { signingConfigs {
release { release {
@@ -135,43 +132,46 @@ android {
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8
} }
namespace 'com.health.openscale' namespace 'com.health.openscale'
lint {
abortOnError false
}
} }
dependencies { 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.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.6.1' 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.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.preference:preference:1.2.1' implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.navigation:navigation-fragment:2.6.0' implementation 'androidx.navigation:navigation-fragment:2.7.7'
implementation 'androidx.navigation:navigation-ui:2.6.0' implementation 'androidx.navigation:navigation-ui:2.7.7'
implementation "android.arch.lifecycle:extensions:1.1.1" 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 // MPAndroidChart
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
// Simple CSV // Simple CSV
implementation 'com.j256.simplecsv:simplecsv:2.6' implementation 'com.j256.simplecsv:simplecsv:2.6'
// Blessed Android // Blessed Android
implementation 'com.github.weliem:blessed-android:2.4.2' implementation 'com.github.weliem:blessed-android:2.5.0'
// CustomActivityOnCrash // CustomActivityOnCrash
implementation 'cat.ereza:customactivityoncrash:2.3.0' implementation 'cat.ereza:customactivityoncrash:2.3.0'
// AppIntro // AppIntro
implementation 'com.github.AppIntro:AppIntro:6.2.0' implementation 'com.github.AppIntro:AppIntro:6.2.0'
// implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.20' // implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.20'
// Room // Room
implementation 'androidx.room:room-runtime:2.5.2' implementation 'androidx.room:room-runtime:2.6.1'
annotationProcessor 'androidx.room:room-compiler:2.5.2' annotationProcessor 'androidx.room:room-compiler:2.6.1'
androidTestImplementation 'androidx.room:room-testing:2.5.2' androidTestImplementation 'androidx.room:room-testing:2.6.1'
// Timber // Timber
implementation 'com.jakewharton.timber:timber:5.0.1' implementation 'com.jakewharton.timber:timber:5.0.1'
// Local unit tests // Local unit tests
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
// Instrumented unit tests // 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.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:rules:1.5.0' androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

View File

@@ -5,8 +5,8 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.0.2' classpath 'com.android.tools.build:gradle:8.4.0'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7"
} }
} }

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists 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