Update F-Droid link in settings

This commit is contained in:
MM20 2023-05-19 21:33:23 +02:00
parent 24697c1048
commit d9aa69fb43
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -101,11 +101,11 @@ fun AboutSettingsScreen() {
Preference( Preference(
icon = Icons.Rounded.Fdroid, icon = Icons.Rounded.Fdroid,
title = stringResource(id = R.string.preference_about_fdroid), title = stringResource(id = R.string.preference_about_fdroid),
summary = "github.com/MM2-0/fdroid", summary = "fdroid.mm20.de",
onClick = { onClick = {
context.startActivity(Intent(Intent.ACTION_VIEW).apply { context.startActivity(Intent(Intent.ACTION_VIEW).apply {
data = data =
Uri.parse("https://raw.githubusercontent.com/MM2-0/fdroid/master/fdroid/repo") Uri.parse("https://fdroid.mm20.de")
}) })
} }
) )