Skip to content

Commit

Permalink
chore: upgrade algosdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltchuang committed Oct 24, 2024
1 parent ee532f4 commit 1d96e06
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ dependencies {
// ExoPlayer
implementation "com.google.android.exoplayer:exoplayer:${libVersions.exoPlayer}"

implementation("com.algorand:algosdk:${libVersions.algoSdk}") {
implementation(libs.algosdk) {
exclude group: 'org.bouncycastle'
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.9.22'
ext.kotlin_version = '1.9.24'
ext.safeargs_gradle_version = '2.7.6'
ext.gradle_version = '8.2.1'
ext.firebase_crashlytics_version = '2.9.9'
Expand Down
9 changes: 9 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[versions]
algosdk = "2.5.0"

[libraries]
algosdk = { module = "com.algorand:algosdk", version.ref = "algosdk" }

[bundles]

[plugins]
2 changes: 0 additions & 2 deletions settings.gradle

This file was deleted.

2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include(":app")
rootProject.name = "algorand-android"
7 changes: 3 additions & 4 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ ext {
walletConnectBom: '1.34.1',
moshi : '1.15.1',
exoPlayer : '2.19.1',
firebaseBom : '33.1.1',
algoSdk : '2.4.0'
firebaseBom : '33.1.1'
]

discoverVersions = [
Expand All @@ -59,7 +58,7 @@ ext {
]

peraApplication = [
versionCode: 120,
versionName: "5.10.15"
versionCode: 121,
versionName: "5.11.0"
]
}

0 comments on commit 1d96e06

Please sign in to comment.