A cheap attempt at a native Bluesky client for Android
0
fork

Configure Feed

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

*: deps

geesawra dfb24662 35e7d5eb

+3
+1
app/build.gradle.kts
··· 70 70 implementation("androidx.paging:paging-compose:3.3.0-alpha05") 71 71 72 72 implementation(libs.androidx.compose.animation.core.lint) 73 + implementation(libs.androidx.material3) 73 74 ksp("com.google.dagger:hilt-compiler:2.57.2") 74 75 implementation(libs.androidx.core.ktx) 75 76 implementation(libs.androidx.lifecycle.runtime.ktx)
+2
gradle/libs.versions.toml
··· 9 9 activityCompose = "1.8.0" 10 10 composeBom = "2024.09.00" 11 11 animationCoreLint = "1.9.2" 12 + material3 = "1.4.0" 12 13 13 14 [libraries] 14 15 androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } ··· 26 27 androidx-compose-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" } 27 28 androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" } 28 29 androidx-compose-animation-core-lint = { group = "androidx.compose.animation", name = "animation-core-lint", version.ref = "animationCoreLint" } 30 + androidx-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" } 29 31 30 32 [plugins] 31 33 android-application = { id = "com.android.application", version.ref = "agp" }