diff --git a/app/build.gradle.kts b/app/build.gradle.kts index bc4e4fff..2e35094f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -167,7 +167,7 @@ dependencies { val markwonVersion = "4.6.2" val okhttpVersion = "4.9.1" annotationProcessor("com.github.bumptech.glide:compiler:$glideVersion") - implementation("androidx.activity:activity:1.2.1") + implementation("androidx.activity:activity:1.2.2") implementation("androidx.browser:browser:1.3.0") implementation("androidx.constraintlayout:constraintlayout:2.0.4") implementation("androidx.core:core:1.3.2") diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 3df84f98..83265057 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -179,7 +179,8 @@ android { fun findInPath(executable: String): String? { val pathEnv = System.getenv("PATH") return pathEnv.split(File.pathSeparator).map { folder -> - Paths.get("${folder}${File.separator}${executable}").toFile() + Paths.get("${folder}${File.separator}${executable}${if (isWindows) ".exe" else ""}") + .toFile() }.firstOrNull { path -> path.exists() }?.absolutePath diff --git a/service b/service index b012241d..d472277c 160000 --- a/service +++ b/service @@ -1 +1 @@ -Subproject commit b012241d59c3496960159e02c0f2e5787275bc3a +Subproject commit d472277c2773399148be6bf2e03ea21fd59b1dd6