Arley Santana

Results 16 comments of Arley Santana

Has anyone found any solution for this case?

AndroidManifest.xml error: uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18" Success: uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"

Thanks for your tip. I will try to apply it, while there is no solution from the library. From what I've seen, this error has been known for some time,...

The error does not occur when I use 'override val key = uniqueScreenKey', but there is duplication of navigation. I will test 'dropUnlessResumed' for click

You can browse based on state and every time you browse, you clear the state immediately. ``` LaunchedEffect(state.navigateToScreen) { state.navigateToScreen?.let { navigationToConfirmRegister() action(SignupAction.ClearNavigate) } } ```

Hello, an example of using BOM in KMP projects is Koin. koin-bom = { module = "io.insert-koin:koin-bom", version.ref = "koin" } https://insert-koin.io/docs/setup/koin

Thank you very much for the tips. I will carry out tests and report the results as soon as possible.

In some parts of my VerticalCourseItemUI component ```kotlin @Composable fun VerticalCourseItemUI( modifier: Modifier = Modifier, course: Course, isLoadingEffect: Boolean = false, colors: CardColors = CardDefaults.cardColors( containerColor = MyTheme.colorScheme.screen.backgroundSecondary ), onClick:...