๐Ÿ”— Redirect Bluesky links to your preferred client
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Append version name to APK file names

+7
+4
lemmyredirect/build.gradle.kts
··· 1 + import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName 2 + 1 3 plugins { 2 4 alias(libs.plugins.androidApplication) 3 5 alias(libs.plugins.kotlinAndroid) ··· 22 24 vectorDrawables { 23 25 useSupportLibrary = true 24 26 } 27 + 28 + archivesName = "LemmyRedirect_$versionName" 25 29 } 26 30 27 31 buildTypes {
+3
mastodonredirect/build.gradle.kts
··· 1 + import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName 1 2 import java.util.Properties 2 3 3 4 plugins { ··· 24 25 vectorDrawables { 25 26 useSupportLibrary = true 26 27 } 28 + 29 + archivesName = "MastodonRedirect_$versionName" 27 30 } 28 31 29 32 buildTypes {