summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle6
-rw-r--r--wallet/build.gradle8
2 files changed, 7 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle
index 96b232e..fde36e0 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,6 +1,6 @@
buildscript {
ext {
- kotlin_version = '1.8.0' // observe compatibility with compose compiler
+ kotlin_version = '1.8.10' // observe compatibility with compose compiler
ktor_version = '2.1.3'
nav_version = '2.5.3'
material_version = '1.8.0'
@@ -11,14 +11,14 @@ buildscript {
// check https://android-rebuilds.beuc.net/ for availability of free build tools
build_tools_version = "33.0.1"
// should debug build types be minified with D8 as well? good for catching issues early
- minify_debug = false
+ minify_debug = true
}
repositories {
google()
mavenCentral()
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.4.0'
+ classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
diff --git a/wallet/build.gradle b/wallet/build.gradle
index 99889c0..d25229d 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -86,7 +86,7 @@ android {
}
composeOptions {
- kotlinCompilerExtensionVersion "1.4.0"
+ kotlinCompilerExtensionVersion "1.4.3"
}
buildFeatures {
@@ -117,7 +117,7 @@ dependencies {
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation "com.google.android.material:material:$material_version"
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
- implementation "androidx.browser:browser:1.4.0"
+ implementation "androidx.browser:browser:1.5.0"
// Compose
implementation 'androidx.activity:activity-compose:1.6.1'
@@ -144,7 +144,7 @@ dependencies {
// QR codes
implementation 'com.journeyapps:zxing-android-embedded:4.3.0@aar'
// needed to support zxing library in taler-kotlin-android on API < 24
- coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
+ coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'
// Nicer ProgressBar
implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
@@ -155,7 +155,7 @@ dependencies {
implementation "io.noties.markwon:ext-tables:$markwon_version"
implementation "io.noties.markwon:recycler:$markwon_version"
- // Java Native access
+ // Java Native access for qtart
implementation "net.java.dev.jna:jna:5.13.0@aar"
testImplementation "junit:junit:$junit_version"