Skip to content

Commit

Permalink
gradle 8.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Jul 25, 2024
1 parent 56d346c commit 5d63322
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
8 changes: 4 additions & 4 deletions VCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ plugins {
}

android {
compileSdk 35
compileSdk 34
namespace 'io.velocitycareerlabs'

defaultConfig {
minSdk 24
targetSdk 35
versionName "2.5.1"
versionCode 141
targetSdk 34
versionName "2.5.2"
versionCode 142
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ class SecretStoreServiceImpl(
}

override fun storeKey(keyId: String, key: JWK) {
val isStored = encryptedSharedPreferences.edit().putString(KEY_PREFIX + keyId, key.toJSONString()).commit()
if (!isStored) {
throw Exception("Failed to store key: keyId: $keyId, key: $key")
}
encryptedSharedPreferences.edit().putString(KEY_PREFIX + keyId, key.toJSONString()).apply()
}

override fun retrieveKey(keyId: String): JWK {
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ plugins {
}

android {
compileSdk 35
compileSdk 34
// buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.vcl.wallet"
minSdk 24
targetSdk 35
targetSdk 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.2'
classpath 'com.android.tools.build:gradle:8.5.1'
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.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip

0 comments on commit 5d63322

Please sign in to comment.