Skip to content

Commit c97c5dd

Browse files
authored
Merge pull request #158 from reown-com/7b0bdependabot/gradle/koin-4.1.0
deps(deps): bump koin from 3.5.6 to 4.1.0
2 parents 1650ca2 + 694b379 commit c97c5dd

File tree

7 files changed

+26
-7
lines changed

7 files changed

+26
-7
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dokka = "1.9.20"
2323
moshi = "1.15.2"
2424
googleService = "4.4.2"
2525
scarlet = "1.0.2"
26-
koin = "3.5.6"
26+
koin = "4.1.0"
2727
retrofit = "2.11.0"
2828
okhttp = "5.1.0"
2929
bouncyCastle = "1.78.1"
@@ -36,7 +36,7 @@ kethereum = "0.86.0"
3636
relinker = "1.4.5"
3737
coil = "2.6.0"
3838
customQrGenerator = "1.6.2"
39-
beagle = "2.9.10"
39+
beagle = "2.9.0"
4040
coinbase = "1.0.4"
4141

4242
firebaseBOM = "33.3.0"

sample/dapp/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ android {
6666
composeOptions {
6767
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
6868
}
69+
packaging {
70+
resources {
71+
excludes += "/META-INF/{AL2.0,LGPL2.1}"
72+
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST.MF"
73+
}
74+
}
6975
}
7076

7177
dependencies {

sample/dapp/src/main/kotlin/com/reown/sample/dapp/ui/DappSampleActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ class DappSampleActivity : ComponentActivity() {
3535
}
3636
}
3737

38-
override fun onNewIntent(intent: Intent?) {
38+
override fun onNewIntent(intent: Intent) {
3939
super.onNewIntent(intent)
4040

41-
if (intent?.dataString?.contains("wc_ev") == true) {
41+
if (intent.dataString?.contains("wc_ev") == true) {
4242
AppKit.handleDeepLink(intent.dataString ?: "") {
4343
lifecycleScope.launch(Dispatchers.Main) {
4444
Toast.makeText(this@DappSampleActivity, "Error dispatching envelope: ${it.throwable.message}", Toast.LENGTH_SHORT).show()

sample/modal/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ android {
6666
composeOptions {
6767
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
6868
}
69+
packaging {
70+
resources {
71+
excludes += "/META-INF/{AL2.0,LGPL2.1}"
72+
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST.MF"
73+
}
74+
}
6975
}
7076

7177
dependencies {

sample/modal/src/main/kotlin/com/reown/sample/modal/MainActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ class MainActivity : ComponentActivity() {
186186
}
187187
}
188188

189-
override fun onNewIntent(intent: Intent?) {
189+
override fun onNewIntent(intent: Intent) {
190190
super.onNewIntent(intent)
191191

192-
if (intent?.dataString?.contains("wc_ev") == true) {
192+
if (intent.dataString?.contains("wc_ev") == true) {
193193
AppKit.handleDeepLink(intent.dataString ?: "") {
194194
lifecycleScope.launch(Dispatchers.Main) {
195195
Toast.makeText(this@MainActivity, "Error dispatching envelope: ${it.throwable.message}", Toast.LENGTH_SHORT).show()

sample/wallet/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ android {
6969
composeOptions {
7070
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
7171
}
72+
73+
packaging {
74+
resources {
75+
excludes += "/META-INF/{AL2.0,LGPL2.1}"
76+
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST.MF"
77+
}
78+
}
7279
}
7380

7481
dependencies {

sample/wallet/src/main/kotlin/com/reown/sample/wallet/ui/WalletKitActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ class WalletKitActivity : AppCompatActivity() {
363363
}
364364
}
365365

366-
override fun onNewIntent(intent: Intent?) {
366+
override fun onNewIntent(intent: Intent) {
367367
super.onNewIntent(intent)
368368

369369
handleAppLink(intent)

0 commit comments

Comments
 (0)