Trey
> Direct local .aar file dependencies are not supported when building an AAR. The resulting AAR would be broken because the classes and Android resources from any local .aar file dependencies would not be packaged in the resulting AAR. Previous versions of the Android Gradle Plugin produce broken AARs in this case too (despite not throwing this error). The following direct local .aar file dependencies of the :common project caused this error:
myanmarking
Alexander Suraphel
A problem occurred configuring root project ''.
> 'kotlin-android' plugin requires one of the Android Gradle plugins.
Please apply one of the following plugins to ':' project:
- com.android.application
- com.android.library
- com.android.dynamic-feature
- com.android.asset-pack
- com.android.asset-pack-bundle
- com.android.lint
- com.android.test
- com.android.instantapp
- com.android.feature
Yves Kalume
George
Vsevolod Kaganovych
AnimatedVisibility
David Corrado
AmrJyniat
Card( Modifier.clickable { doSomething() } ){ CheckBox( ....., onCheckedChange = { } // leave it empty and pass its event to parent ) Text("Some label") }
Android75
oday
private fun resetCounterAndGame(counter: Int) { if (counter == 2) { gameButtonText.set(resProvider.getString(R.string.try_another_number)) gameStarted = false counter = 0 <--- val cannot be reassigned of course } }
A modern programming language that makes developers happier.