Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
276ab58
Merge pull request #88 from Hepolise/dev
Hepolise Feb 18, 2025
13326c4
Bump version
Hepolise Feb 18, 2025
ed5891c
Bump androidx.activity:activity-compose from 1.10.0 to 1.10.1
dependabot[bot] Feb 27, 2025
d2050c8
Bump com.android.application from 8.8.1 to 8.8.2
dependabot[bot] Feb 27, 2025
da4a1f5
Merge pull request #91 from Hepolise/dependabot/gradle/main/androidx.…
Hepolise Feb 27, 2025
9aae0f1
Merge pull request #92 from Hepolise/dependabot/gradle/main/com.andro…
Hepolise Feb 27, 2025
1321690
Bump com.android.library from 8.8.1 to 8.8.2
dependabot[bot] Feb 27, 2025
38b5a2b
Merge pull request #93 from Hepolise/dependabot/gradle/main/com.andro…
Hepolise Feb 27, 2025
5ac3f2b
Update README.md [skip CI]
Hepolise Mar 3, 2025
09bce83
Bump com.android.application from 8.8.2 to 8.9.0
dependabot[bot] Mar 5, 2025
4a7d6f9
Merge pull request #94 from Hepolise/dependabot/gradle/main/com.andro…
Hepolise Mar 5, 2025
5e8e7a9
Bump com.android.library from 8.8.2 to 8.9.0
dependabot[bot] Mar 5, 2025
e87ac1f
Merge pull request #95 from Hepolise/dependabot/gradle/main/com.andro…
Hepolise Mar 5, 2025
81477ff
Bump androidx.compose:compose-bom from 2025.02.00 to 2025.03.00
dependabot[bot] Mar 12, 2025
066ac7b
Merge pull request #96 from Hepolise/dependabot/gradle/main/androidx.…
Hepolise Mar 12, 2025
873833b
Bump org.jetbrains.kotlin.plugin.compose from 2.1.10 to 2.1.20
dependabot[bot] Mar 20, 2025
0431d50
Bump org.jetbrains.kotlin:kotlin-bom from 2.1.10 to 2.1.20
dependabot[bot] Mar 20, 2025
654d1e9
Merge pull request #97 from Hepolise/dependabot/gradle/main/org.jetbr…
Hepolise Mar 20, 2025
965787f
Merge pull request #98 from Hepolise/dependabot/gradle/main/org.jetbr…
Hepolise Mar 20, 2025
59d205a
Bump org.jetbrains.kotlin.android from 2.1.10 to 2.1.20
dependabot[bot] Mar 20, 2025
538e79f
Merge pull request #99 from Hepolise/dependabot/gradle/main/org.jetbr…
Hepolise Mar 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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)
Expand Down