From 1177120f2fcfdcf7c9fe7c7ffacf5bb7c14e629c Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Sun, 28 Jan 2024 12:32:23 +0100 Subject: [PATCH] chore: app not found message --- app/src/main/kotlin/me/rhunk/snapenhance/SnapEnhance.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/me/rhunk/snapenhance/SnapEnhance.kt b/app/src/main/kotlin/me/rhunk/snapenhance/SnapEnhance.kt index b818d165a..9712a0d21 100644 --- a/app/src/main/kotlin/me/rhunk/snapenhance/SnapEnhance.kt +++ b/app/src/main/kotlin/me/rhunk/snapenhance/SnapEnhance.kt @@ -36,7 +36,7 @@ class SnapEnhance { runCatching { appContext.androidContext.packageManager.getApplicationInfoCompat(BuildConfig.APPLICATION_ID, PackageManager.GET_META_DATA) }.onFailure { - appContext.crash("SnapEnhance bridge service is not installed. Please download stable version from https://github.com/rhunk/SnapEnhance/releases") + appContext.crash("SnapEnhance app is not installed. Please download a build from github.com/rhunk/SnapEnhance") return@hook }