From f5530a2b4b6a4d9b93cf888fdb889b15a8f23043 Mon Sep 17 00:00:00 2001 From: Akshat Tiwari Date: Thu, 11 Jul 2024 01:38:07 +0530 Subject: [PATCH] Bump versions --- app/build.gradle.kts | 6 +++--- build.gradle.kts | 6 +++--- gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 6 +++--- iap/build.gradle.kts | 8 ++++---- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index f672e86..b375a7f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -60,9 +60,9 @@ android { dependencies { implementation(project(":iap")) - implementation("androidx.appcompat:appcompat:1.6.1") + implementation("androidx.appcompat:appcompat:1.7.0") implementation("androidx.gridlayout:gridlayout:1.0.0") - implementation("com.google.android.material:material:1.11.0") + implementation("com.google.android.material:material:1.12.0") implementation("androidx.constraintlayout:constraintlayout:2.1.4") - implementation("com.intuit.sdp:sdp-android:1.1.0") + implementation("com.intuit.sdp:sdp-android:1.1.1") } diff --git a/build.gradle.kts b/build.gradle.kts index 6f92040..f6e780b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ buildscript { val kotlinVersion = "1.9.22" dependencies { - classpath("com.android.tools.build:gradle:8.2.1") + classpath("com.android.tools.build:gradle:8.5.0") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") } } @@ -18,6 +18,6 @@ allprojects { } } -tasks.register("clean", Delete::class) { - delete(rootProject.buildDir) +tasks.register("clean") { + delete(layout.buildDirectory) } diff --git a/gradle.properties b/gradle.properties index d46675a..f5b4bdb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,6 +13,6 @@ #Sun Apr 18 16:32:37 IST 2021 android.useAndroidX=true org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" -android.defaults.buildfeatures.buildconfig=true android.nonTransitiveRClass=false android.nonFinalResIds=false +org.gradle.configuration-cache=true \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 42688bc..825a6b2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Fri Oct 01 13:20:39 IST 2021 +#Wed Jun 12 14:26:56 IST 2024 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionPath=wrapper/dists -zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/iap/build.gradle.kts b/iap/build.gradle.kts index 463c285..29cbc72 100644 --- a/iap/build.gradle.kts +++ b/iap/build.gradle.kts @@ -9,7 +9,7 @@ android { namespace = "com.limurse.iap" defaultConfig { - minSdk = 16 + minSdk = 21 } buildTypes { @@ -40,11 +40,11 @@ android { dependencies { - implementation("com.android.billingclient:billing-ktx:6.1.0") + implementation("com.android.billingclient:billing-ktx:7.0.0") - implementation("androidx.appcompat:appcompat:1.6.1") + implementation("androidx.appcompat:appcompat:1.7.0") implementation("androidx.lifecycle:lifecycle-extensions:2.2.0") - implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0") + implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.3") testImplementation("junit:junit:4.13.2") }