diff --git a/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt b/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt index b6649effdd..2461b3587c 100644 --- a/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt +++ b/common/src/main/kotlin/com/github/kr328/clash/common/compat/Context.kt @@ -25,7 +25,8 @@ fun Context.registerReceiverCompat( filter, permission, scheduler, - if (permission == null) ContextCompat.RECEIVER_EXPORTED else ContextCompat.RECEIVER_NOT_EXPORTED, + if (permission == null) ContextCompat.RECEIVER_EXPORTED + else ContextCompat.RECEIVER_NOT_EXPORTED, ) fun Service.startForegroundCompat(id: Int, notification: Notification) = diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8768ff32ed..b3f39a53b0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -48,7 +48,7 @@ composePreference = "me.zhanghai.compose.preference:preference:2.2.0" reorderable = "sh.calvin.reorderable:reorderable:3.1.0" # Dummy to get renovate updates, the version is used in rootProject build.gradle with spotless. -ktfmt = "com.facebook:ktfmt:0.62" +ktfmt = "com.facebook:ktfmt:0.63" [plugins] android-application = { id = "com.android.application", version.ref = "agp" }