Posts by rayanasouza • 41 points
5 posts
-
0
votes1
answer554
viewsA: Mixing versions can lead Runtime crashes
Add this code at the end of build.Radle (Module:app). configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if…
-
0
votes2
answers35
viewsA: Problems handling Vector Asset
I managed to solve my problem this way. First I put the image so I can set its color. I hope it doesn’t give more problem :D…
-
0
votes1
answer22
viewsA: This xml works perfectly in Android studio emulators, but not on physical device. I ask for help
Good afternoon. Maybe it’s some different setup from the Android Studio emulator for the physical phone you’re using for testing. I suggest you check the SDK Tools and also if the phone is allowed…
android-layoutanswered rayanasouza 41 -
1
votes2
answers35
viewsQ: Problems handling Vector Asset
Android Studio is returning this error when I add images to my project, but the selected images are the native IDE icons.…
-
3
votes4
answers3854
viewsQ: findViewById no Kotlin
I was generating an action by clicking on a Button fun cliqueBotao(view : View){ var texto = findViewById<>(R.id.textoExibicao) as TextView texto.setText("Texto alterado") } Only that Android…