Created
December 6, 2021 22:16
-
-
Save bmc08gt/bfc6d32bf231879b8232279729cdbbe3 to your computer and use it in GitHub Desktop.
compose.kt
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
| ext { | |
| compose_version = '1.0.5' | |
| accompanist_version = "0.20.2" | |
| } | |
| android { | |
| buildFeatures { | |
| compose true | |
| } | |
| composeOptions { | |
| kotlinCompilerExtensionVersion "1.1.0-alpha05" | |
| } | |
| } | |
| dependencies { | |
| implementation "androidx.compose.material:material:$compose_version" | |
| implementation "androidx.compose.animation:animation:$compose_version" | |
| implementation "com.google.android.material:compose-theme-adapter:$compose_version" | |
| implementation "androidx.compose.foundation:foundation-layout:$compose_version" | |
| implementation "androidx.compose.ui:ui:$compose_version" | |
| implementation "androidx.compose.ui:ui-util:$compose_version" | |
| implementation "androidx.compose.ui:ui-tooling:$compose_version" | |
| implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-rc01" | |
| implementation "androidx.compose.material:material-icons-extended:$compose_version" | |
| implementation "androidx.activity:activity-compose:$compose_version" | |
| implementation "androidx.navigation:navigation-compose:2.4.0-beta02" | |
| implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.4.0" | |
| androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" | |
| implementation "com.google.accompanist:accompanist-insets:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-flowlayout:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-pager:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-pager-indicators:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-placeholder-material:$accompanist_version" | |
| implementation "com.google.accompanist:accompanist-permissions:$accompanist_version" | |
| implementation("io.coil-kt:coil-compose:1.3.2") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment