Skip to content

Commit a75bb5e

Browse files
android r8, docs, new versions, fix scripts
1 parent 7f7e26d commit a75bb5e

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ This project provides a native RevenueCat plugin for Godot, built as a fully int
4343
| Godot | 4.5‑stable |
4444
| RevenueCat iOS SDK | 5.54.0 |
4545
| RevenueCat Android SDK | 9.19.0 |
46-
| Kotlin | 2.1.0 |
46+
| Kotlin | 2.3.0 |
4747
| Min iOS | 15.0 |
4848
| Min Android SDK | 24 (Android 7.0) |
4949

source/android/revenue_cat/build.gradle.kts

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
plugins {
2-
id("com.android.library") version "8.2.2"
3-
id("org.jetbrains.kotlin.android") version "2.1.0"
2+
id("com.android.library") version "8.13.2"
3+
id("org.jetbrains.kotlin.android") version "2.3.0"
44
}
55

66
android {
77
namespace = "com.godotx.revenuecat"
88
compileSdk = 35
99

1010
defaultConfig {
11-
minSdk = 21
11+
minSdk = 24
1212
consumerProguardFiles("consumer-rules.pro")
1313
}
1414

@@ -23,14 +23,16 @@ android {
2323
targetCompatibility = JavaVersion.VERSION_11
2424
}
2525

26-
kotlinOptions {
27-
jvmTarget = "11"
26+
kotlin {
27+
compilerOptions {
28+
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11
29+
}
2830
}
2931
}
3032

3133
dependencies {
32-
compileOnly("org.godotengine:godot:4.2.2.stable")
33-
34+
compileOnly("org.godotengine:godot:4.5.0.stable")
35+
3436
// RevenueCat
3537
implementation("com.revenuecat.purchases:purchases:9.19.0")
3638
implementation("com.revenuecat.purchases:purchases-ui:9.19.0")

0 commit comments

Comments
 (0)