Skip to content

Commit

Permalink
Release-Candidate 1.11.0-RC5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gematik-Entwicklung committed May 22, 2023
1 parent 9b3f588 commit af2ac5f
Show file tree
Hide file tree
Showing 93 changed files with 2,974 additions and 1,202 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Release 1.11.0-RC5
- Direct redemption of prescription without TI
- Bugfixes

# Release 1.10.0
- Began implementation for support of private insurances
- Bugfixes
Expand Down
7 changes: 3 additions & 4 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,12 @@ android {

compileOptions {
isCoreLibraryDesugaringEnabled = true

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ import java.security.KeyFactory
import java.security.Signature
import java.time.Instant
import java.time.temporal.ChronoUnit
import java.util.*

private val HealthCardCert = BuildKonfig.DEFAULT_VIRTUAL_HEALTH_CARD_CERTIFICATE
private val HealthCardCertPrivateKey = BuildKonfig.DEFAULT_VIRTUAL_HEALTH_CARD_PRIVATE_KEY
Expand Down Expand Up @@ -346,11 +347,12 @@ class DebugSettingsViewModel(
}
} while (obj != null)

pharmacyDirectRedeemUseCase.redeemPrescription(
pharmacyDirectRedeemUseCase.redeemPrescriptionDirectly(
url = url,
message = message,
telematikId = "",
recipientCertificates = certificates
recipientCertificates = certificates,
transactionId = UUID.randomUUID().toString()
).getOrThrow()
}

Expand Down
Loading

0 comments on commit af2ac5f

Please sign in to comment.