Skip to content

Commit d323e26

Browse files
committed
Bump dependencies
1 parent a273cba commit d323e26

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[versions]
22
kotlin = "2.1.0"
3-
agp = "8.6.1"
3+
agp = "8.8.0"
44
compileSdk = "34"
55
targetSdk = "34"
66
minSdk = "21"
77
appcompat = "1.7.0"
88
gridlayout = "1.0.0"
99
material = "1.12.0"
10-
constraintlayout = "2.1.4"
10+
constraintlayout = "2.2.0"
1111
sdp-android = "1.1.1"
1212
billing-ktx = "7.1.1"
1313
lifecycle-extensions = "2.2.0"
14-
lifecycle-runtime-ktx = "2.8.6"
14+
lifecycle-runtime-ktx = "2.8.7"
1515
junit = "4.13.2"
1616

1717
[libraries]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Jun 12 14:26:56 IST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

iap/src/main/java/com/limurse/iap/BillingService.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ class BillingService(
2626

2727
override fun init(key: String?) {
2828
decodedKey = key
29-
mBillingClient = BillingClient.newBuilder(context).setListener(this).enablePendingPurchases().build()
29+
mBillingClient = BillingClient.newBuilder(context).setListener(this)
30+
.enablePendingPurchases().build()
3031
mBillingClient.startConnection(object : BillingClientStateListener{
3132
override fun onBillingServiceDisconnected() {
3233
log("onBillingServiceDisconnected")

0 commit comments

Comments
 (0)