mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-16 14:27:18 +02:00
35 lines
1.2 KiB
Kotlin
35 lines
1.2 KiB
Kotlin
package app.revanced.shared.patches.gestures
|
|
|
|
import app.revanced.patcher.annotation.Description
|
|
import app.revanced.patcher.annotation.Name
|
|
import app.revanced.patcher.annotation.Version
|
|
import app.revanced.patcher.data.ResourceContext
|
|
import app.revanced.patcher.patch.PatchResult
|
|
import app.revanced.patcher.patch.PatchResultSuccess
|
|
import app.revanced.patcher.patch.ResourcePatch
|
|
|
|
@Name("predictive-back-gesture")
|
|
@Description("Enables the predictive back gesture introduced on Android 13.")
|
|
@Version("0.0.1")
|
|
class PredictiveBackGesturePatch : ResourcePatch {
|
|
override fun execute(context: ResourceContext): PatchResult {
|
|
context.xmlEditor["AndroidManifest.xml"].use { editor ->
|
|
val document = editor.file
|
|
|
|
with(document.getElementsByTagName("application").item(0)) {
|
|
if (attributes.getNamedItem(FLAG) != null) return@with
|
|
|
|
document.createAttribute(FLAG)
|
|
.apply { value = "false" }
|
|
.let(attributes::setNamedItem)
|
|
|
|
}
|
|
}
|
|
|
|
return PatchResultSuccess()
|
|
}
|
|
|
|
private companion object {
|
|
const val FLAG = "android:enableOnBackInvokedCallback"
|
|
}
|
|
} |