Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaaatt committed Jan 21, 2025
1 parent a273cba commit d323e26
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[versions]
kotlin = "2.1.0"
agp = "8.6.1"
agp = "8.8.0"
compileSdk = "34"
targetSdk = "34"
minSdk = "21"
appcompat = "1.7.0"
gridlayout = "1.0.0"
material = "1.12.0"
constraintlayout = "2.1.4"
constraintlayout = "2.2.0"
sdp-android = "1.1.1"
billing-ktx = "7.1.1"
lifecycle-extensions = "2.2.0"
lifecycle-runtime-ktx = "2.8.6"
lifecycle-runtime-ktx = "2.8.7"
junit = "4.13.2"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Jun 12 14:26:56 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 2 additions & 1 deletion iap/src/main/java/com/limurse/iap/BillingService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class BillingService(

override fun init(key: String?) {
decodedKey = key
mBillingClient = BillingClient.newBuilder(context).setListener(this).enablePendingPurchases().build()
mBillingClient = BillingClient.newBuilder(context).setListener(this)
.enablePendingPurchases().build()
mBillingClient.startConnection(object : BillingClientStateListener{
override fun onBillingServiceDisconnected() {
log("onBillingServiceDisconnected")
Expand Down

0 comments on commit d323e26

Please sign in to comment.