This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SharedTransitionLayout { | |
Column( | |
modifier = Modifier | |
.fillMaxSize() | |
.padding(paddingValues) | |
) { | |
LazyColumnScrollbar( | |
listState = lazyListState, | |
thumbColor = MaterialTheme.colorScheme.onSurfaceVariant, | |
thumbSelectedColor = MaterialTheme.colorScheme.primary, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File | |
import kotlin.reflect.KClass | |
fun main() { | |
val classesToGenerate = emptyList() //Create a list with your classes || Example: listOf(Agent::class, Ability::class, Buddy::class, Bundle::class) | |
for (clazz in classesToGenerate) { | |
generateTypeConverter(clazz) | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[versions] | |
#General, lifecycle and core | |
agp = "8.2.0-alpha04" | |
kotlin = "1.8.21" | |
core-ktx = "1.10.1" | |
lifecycle-runtime-ktx = "2.6.1" | |
activity-compose = "1.7.1" | |
compose-compiler = "1.4.7" | |
ksp = "1.8.21-1.0.11" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[versions] | |
accompanist = "0.29.2-rc" | |
androidGradlePlugin = "7.4.2" | |
androidxComposeBom = "2023.01.00" | |
androidxComposeCompiler = "1.4.6" | |
androidxCore = "1.10.0-rc01" | |
androidMaterial = "1.9.0-alpha02" | |
androidxAppCompat = "1.7.0-alpha02" | |
androidxActivity = "1.7.1" | |
markdownDependency = "0.3.2" |