Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaaatt committed Jul 10, 2024
1 parent e450ff0 commit f5530a2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
Expand All @@ -18,6 +18,6 @@ allprojects {
}
}

tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
tasks.register<Delete>("clean") {
delete(layout.buildDirectory)
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions iap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {

namespace = "com.limurse.iap"
defaultConfig {
minSdk = 16
minSdk = 21
}

buildTypes {
Expand Down Expand Up @@ -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")
}
Expand Down

0 comments on commit f5530a2

Please sign in to comment.