summaryrefslogtreecommitdiff
path: root/merchant-lib
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2023-10-11 11:21:59 -0300
committerTorsten Grote <t@grobox.de>2023-10-11 11:42:40 -0300
commit5801fe2ea15a468c241d3552ff26af4fa20e0b58 (patch)
tree001be11bccd21b3f07ab8b384a5170272f327d23 /merchant-lib
parent2a91350f267fa6b4a56bb54039db6d71318fc9e4 (diff)
downloadtaler-android-5801fe2ea15a468c241d3552ff26af4fa20e0b58.tar.gz
taler-android-5801fe2ea15a468c241d3552ff26af4fa20e0b58.tar.bz2
taler-android-5801fe2ea15a468c241d3552ff26af4fa20e0b58.zip
upgrade all the things!
Diffstat (limited to 'merchant-lib')
-rw-r--r--merchant-lib/build.gradle16
1 files changed, 8 insertions, 8 deletions
diff --git a/merchant-lib/build.gradle b/merchant-lib/build.gradle
index 2892cd6..5d4bc48 100644
--- a/merchant-lib/build.gradle
+++ b/merchant-lib/build.gradle
@@ -21,9 +21,8 @@ plugins {
}
android {
- compileSdkVersion 33
- //noinspection GradleDependency
- buildToolsVersion "$build_tools_version"
+ namespace 'net.taler.merchantlib'
+ compileSdk 34
defaultConfig {
minSdkVersion 21
@@ -42,12 +41,13 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
-
compileOptions {
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
+ sourceCompatibility = JavaVersion.VERSION_17
+ targetCompatibility = JavaVersion.VERSION_17
+ }
+ kotlinOptions {
+ jvmTarget = "17"
}
- namespace 'net.taler.merchantlib'
}
dependencies {
@@ -62,7 +62,7 @@ dependencies {
testImplementation "junit:junit:$junit_version"
testImplementation "io.ktor:ktor-client-mock-jvm:$ktor_version"
- testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4'
+ testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3'
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {