1
1
buildscript {
2
2
ext {
3
- lifecycle_version = ' 2.6 .0'
3
+ lifecycle_version = ' 2.7 .0'
4
4
}
5
5
6
6
}
@@ -36,34 +36,31 @@ android {
36
36
}
37
37
}
38
38
compileOptions {
39
- sourceCompatibility JavaVersion . VERSION_11
40
- targetCompatibility JavaVersion . VERSION_11
39
+ sourceCompatibility JavaVersion . VERSION_17
40
+ targetCompatibility JavaVersion . VERSION_17
41
41
}
42
42
kotlinOptions {
43
- jvmTarget = ' 11 '
43
+ jvmTarget = ' 17 '
44
44
}
45
45
buildFeatures {
46
46
viewBinding true
47
47
}
48
- configurations {
49
- all* . exclude module : " bcprov-jdk15to18" // Needed for dev.pinkroom.walletconnectkit
50
- }
51
48
}
52
49
53
50
dependencies {
54
51
implementation project(' :library' )
55
- implementation ' androidx.core:core-ktx:1.9 .0'
52
+ implementation ' androidx.core:core-ktx:1.12 .0'
56
53
implementation " androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version "
57
54
implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version "
58
55
implementation " androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version "
59
56
implementation ' androidx.appcompat:appcompat:1.6.1'
60
- implementation ' com.google.android.material:material:1.8 .0'
61
- implementation ' com.google.firebase:firebase-messaging:23.1.2 '
57
+ implementation ' com.google.android.material:material:1.11 .0'
58
+ implementation ' com.google.firebase:firebase-messaging:23.4.0 '
62
59
implementation ' androidx.constraintlayout:constraintlayout:2.1.4'
63
- implementation ' androidx.fragment:fragment-ktx:1.5.5 '
64
- implementation ' androidx.activity:activity-ktx:1.6.1 '
60
+ implementation ' androidx.fragment:fragment-ktx:1.6.2 '
61
+ implementation ' androidx.activity:activity-ktx:1.8.2 '
65
62
implementation ' androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
66
- implementation ' androidx.recyclerview:recyclerview:1.3.0 '
63
+ implementation ' androidx.recyclerview:recyclerview:1.3.2 '
67
64
implementation ' org.web3j:crypto:5.0.0'
68
65
69
66
// WalletConnect V2: core library + WalletConnectModal
@@ -72,7 +69,7 @@ dependencies {
72
69
implementation(" com.walletconnect:walletconnect-modal" )
73
70
74
71
// Navigation Component
75
- def nav_version = " 2.7.5 "
72
+ def nav_version = " 2.7.6 "
76
73
implementation " androidx.navigation:navigation-fragment-ktx:$nav_version "
77
74
implementation " androidx.navigation:navigation-ui-ktx:$nav_version "
78
75
0 commit comments