Skip to content

Commit

Permalink
Merge pull request #152 from velocitycareerlabs/deps-upgrade
Browse files Browse the repository at this point in the history
deps upgrade
  • Loading branch information
michaelavoyan authored Jan 12, 2025
2 parents ecc765e + 1d461ce commit 31958df
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions VCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {
}

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

defaultConfig {
minSdk 24
targetSdk 34
targetSdk 35
versionName "2.6.12"
versionCode 156
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -217,7 +217,7 @@ repositories {
*/

dependencies {
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-ktx:1.15.0'

implementation 'com.nimbusds:nimbus-jose-jwt:9.45'
implementation "androidx.security:security-crypto:1.1.0-alpha06"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ interface VCLCredentialManifestDescriptor {

fun generateQueryParams(): String? {
val pCredentialTypes: String? = credentialTypes?.joinToString("&") { type ->
"${CredentialManifestDescriptorCodingKeys.KeyCredentialTypes}=${type.encode() ?: ""}"
"${CredentialManifestDescriptorCodingKeys.KeyCredentialTypes}=${type.encode()}"
}
val pPushDelegate: String? = pushDelegate?.pushUrl?.let {
"${CredentialManifestDescriptorCodingKeys.KeyPushDelegatePushUrl}=${it.encode() ?: ""}"
"${CredentialManifestDescriptorCodingKeys.KeyPushDelegatePushUrl}=${it.encode()}"
}
val pPushToken: String? = pushDelegate?.pushToken?.let {
"${CredentialManifestDescriptorCodingKeys.KeyPushDelegatePushToken}=${it.encode() ?: ""}"
"${CredentialManifestDescriptorCodingKeys.KeyPushDelegatePushToken}=${it.encode()}"
}

val qParams =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class SecretStoreServiceImpl(
return EncryptedSharedPreferences.create(
FILE_NAME,
masterKeyAlias,
context.getApplicationContext(),
context.applicationContext,
EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM
)
Expand Down
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ plugins {
}

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

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

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -43,12 +43,11 @@ android {
}

dependencies {
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'


//--------- Must: be added:
implementation 'com.nimbusds:nimbus-jose-jwt:9.45'
implementation "androidx.security:security-crypto:1.1.0-alpha06"
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.7.3'
classpath 'com.android.tools.build:gradle:8.8.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

0 comments on commit 31958df

Please sign in to comment.