Skip to content

Commit 3d89941

Browse files
authored
Merge pull request #1379 from WalletConnect/develop
BOM_1.31.2
2 parents 55f7c32 + 03ef6a3 commit 3d89941

File tree

88 files changed

+1733
-1005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1733
-1005
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ captures/
5252
.idea/modules.xml
5353
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
5454
.idea/navEditor.xml
55+
!.idea/codeStyles/**
56+
!.idea/editor.xml
57+
!/.idea/inspectionProfiles
5558

5659
# Keystore files
5760
# Uncomment the following lines if you do not want to check your keystore files in.

.idea/codeStyles/Project.xml

Lines changed: 127 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/editor.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ReadMe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ WalletConnect v2 protocols for Android applications.
1111

1212
| BOM | [Core SDK](core/android) | [Sign SDK](protocol/sign) | [Auth SDK](protocol/auth) | [Chat SDK](protocol/chat) | [Notify SDK](protocol/notify) | [web3wallet](product/web3wallet) | [web3modal](product/web3modal) | [WalletConnectModal](product/walletconnectmodal) |
1313
|-----------------------------------------------------------------------------------------|--------------------------|---------------------------|---------------------------|---------------------------|:------------------------------|----------------------------------|--------------------------------|--------------------------------------------------|
14+
| 1.31.2 | 1.31.2 | 2.31.2 | 1.28.1 | 1.0.0.beta26 | 1.3.2 | 1.31.2 | 1.5.2 | 1.5.2 |
1415
| 1.31.1 | 1.31.1 | 2.31.1 | 1.28.1 | 1.0.0.beta26 | 1.3.1 | 1.31.1 | 1.5.1 | 1.5.1 |
1516
| 1.31.0<sup>[**](https://gist.github.com/TalhaAli00/7b9e1cadf19b9dc5141cd033aa4e6172) | 1.31.0 | 2.31.0 | 1.28.0 | 1.0.0.beta25 | 1.3.0 | 1.31.0 | 1.5.0 | 1.5.0 |
1617
| 1.30.0 | 1.30.0 | 2.30.0 | 1.27.0 | 1.0.0.beta25 | 1.2.0 | 1.30.0 | 1.4.0 | 1.4.0 |

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ sonar {
5959
"sonar.organization" to "walletconnect",
6060
"sonar.host.url" to "https://sonarcloud.io",
6161
"sonar.gradle.skipCompile" to true,
62-
"sonar.coverage.exclusions" to "sample/**"
62+
"sonar.coverage.exclusions" to "sample/**,**/di/**"
6363
)
6464
)
6565
}

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ fun DependencyHandlerScope.security() {
127127
}
128128

129129
fun DependencyHandlerScope.web3jCrypto() {
130-
"api"("com.walletconnect.web3j:crypto:$web3jVersion")
130+
"api"("org.web3j:crypto:$web3jVersion")
131131
}
132132

133133
fun DependencyHandlerScope.kethereum() {

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ const val KEY_PUBLISH_ARTIFACT_ID = "PUBLISH_ARTIFACT_ID"
55
const val KEY_SDK_NAME = "SDK_NAME"
66

77
//Latest versions
8-
const val BOM_VERSION = "1.31.1"
9-
const val FOUNDATION_VERSION = "1.17.0"
10-
const val CORE_VERSION = "1.31.1"
11-
const val SIGN_VERSION = "2.31.1"
8+
const val BOM_VERSION = "1.31.2"
9+
const val FOUNDATION_VERSION = "1.17.1"
10+
const val CORE_VERSION = "1.31.2"
11+
const val SIGN_VERSION = "2.31.2"
1212
const val AUTH_VERSION = "1.28.1"
1313
const val CHAT_VERSION = "1.0.0-beta29"
14-
const val NOTIFY_VERSION = "1.3.1"
15-
const val WEB_3_WALLET_VERSION = "1.31.1"
16-
const val WEB_3_MODAL_VERSION = "1.5.1"
17-
const val WC_MODAL_VERSION = "1.5.1"
18-
const val MODAL_CORE_VERSION = "1.5.1"
14+
const val NOTIFY_VERSION = "1.3.2"
15+
const val WEB_3_WALLET_VERSION = "1.31.2"
16+
const val WEB_3_MODAL_VERSION = "1.5.2"
17+
const val WC_MODAL_VERSION = "1.5.2"
18+
const val MODAL_CORE_VERSION = "1.5.2"
1919

2020
val jvmVersion = JavaVersion.VERSION_11
2121
const val MIN_SDK: Int = 23
@@ -54,7 +54,7 @@ const val mockkVersion = "1.13.5"
5454
const val jsonVersion = "20220924"
5555
const val timberVersion = "5.0.1"
5656
const val androidSecurityVersion = "1.1.0-alpha06"
57-
const val web3jVersion = "4.9.8-wc"
57+
const val web3jVersion = "4.9.8-hotfix"
5858
const val kethereumVersion = "0.85.7"
5959
const val wsRestJavaVersion = "3.1.0"
6060
const val relinkerVersion = "1.4.5"

buildSrc/src/main/kotlin/signing-config.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,8 @@ project.extensions.configure(BaseExtension::class.java) {
8585
}
8686
}
8787
}
88+
}
89+
90+
dependencies {
91+
add("implementation", "com.google.firebase:firebase-appdistribution:16.0.0-beta12")
8892
}

core/android/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,6 @@ dependencies {
108108
testJson()
109109
coroutinesTest()
110110
scarletTest()
111+
turbine()
111112
testImplementation(libs.bundles.sqlDelightTest)
112113
}

0 commit comments

Comments
 (0)