Skip to content

Commit

Permalink
sdk v2.5.7 - kotlin_version = "1.9.24", gradle-8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Sep 9, 2024
1 parent 7a1f1dd commit ffc5a07
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# WalletAndroid
VCL library consumer app

kotlin version: 1.9.23
kotlin version: 1.9.24

minSdk 24

Expand Down
4 changes: 2 additions & 2 deletions VCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdk 24
targetSdk 34
versionName "2.5.5"
versionCode 145
versionName "2.5.7"
versionCode 147
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ import org.json.JSONObject
import java.lang.StringBuilder

class VCLServiceCredentialAgentIssuer(payload: JSONObject): VCLService(payload) {
val credentialTypes: List<String>? =
payload.optJSONArray(VCLService.KeyCredentialTypes)?.toList() as? List<String>
val credentialTypes: List<*>? = payload.optJSONArray(VCLService.KeyCredentialTypes)?.toList()

override fun toPropsString() =
StringBuilder(super.toPropsString())
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.9.23"
ext.kotlin_version = "1.9.24"
// Set "rc" suffix for VCL SDK release candidate
ext.rcSuffix = "rc"
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.2'
classpath 'com.android.tools.build:gradle:8.6.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion 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.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip

0 comments on commit ffc5a07

Please sign in to comment.