fix: Dummy URL

This commit is contained in:
J-Jamet
2025-09-08 14:02:52 +02:00
parent 5fda628c9c
commit 96ed9fc7a6

View File

@@ -109,7 +109,7 @@ object AppUtil {
// Create a generic web intent
val intent = Intent(Intent.ACTION_VIEW)
intent.data = "http://www.example.com".toUri() // Dummy URL
intent.data = context.getString(R.string.homepage_url).toUri()
// Query for apps that can handle this intent
val resolveInfoList: List<ResolveInfo> = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {