diff --git a/README.md b/README.md index 5a0156c..2ee59ad 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Works when the screen is off. ## Requirements -* [LSPosed](https://github.com/LSPosed/LSPosed) 93+ +* LSPosed 93+ (recommended version: [JingMatrix](https://github.com/JingMatrix/LSPosed)) * Android 11+ (may be working on lower versions, you can try and install it even on Android 8.1) ## Tested on diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4f5cbc5..b9356bb 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -35,14 +35,14 @@ android { } dependencies { - implementation(platform("org.jetbrains.kotlin:kotlin-bom:2.1.10")) + implementation(platform("org.jetbrains.kotlin:kotlin-bom:2.1.20")) implementation("androidx.core:core-ktx:1.15.0") // Compose BOM (Bill of Materials) - implementation(platform("androidx.compose:compose-bom:2025.02.00")) + implementation(platform("androidx.compose:compose-bom:2025.03.00")) // Compose dependencies - implementation("androidx.activity:activity-compose:1.10.0") + implementation("androidx.activity:activity-compose:1.10.1") implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-tooling-preview") implementation("androidx.compose.material3:material3:1.3.1") diff --git a/build.gradle.kts b/build.gradle.kts index 19c6899..7a0a166 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,12 +1,12 @@ plugins { - id("com.android.application") version "8.8.1" apply false - id("com.android.library") version "8.8.1" apply false - id("org.jetbrains.kotlin.android") version "2.1.10" apply false - id("org.jetbrains.kotlin.plugin.compose") version "2.1.10" apply false + id("com.android.application") version "8.9.0" apply false + id("com.android.library") version "8.9.0" apply false + id("org.jetbrains.kotlin.android") version "2.1.20" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.1.20" apply false } -val versionName = "1.15.4" -val versionCode = 11 +val versionName = "1.15.5" +val versionCode = 12 rootProject.ext.set("appVersionName", versionName) rootProject.ext.set("appVersionCode", versionCode)