Last active
November 19, 2019 05:49
-
-
Save ulmaull/fd14d4157937c6c1e2f5340c26be69bf to your computer and use it in GitHub Desktop.
noted implementation
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
| def recyclerview_version = "1.0.0" | |
| def cardview_version = "1.0.0" | |
| implementation "com.mikepenz:fastadapter-extensions-expandable:4.1.1" | |
| //The tiny Materialize library used for its useful helper classes | |
| implementation "com.mikepenz:materialize:1.2.1" // at least 1.2.0 | |
| implementation "com.mikepenz:fastadapter:4.1.1" | |
| implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1" | |
| implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1" | |
| implementation "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2" | |
| implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" | |
| implementation 'com.squareup.retrofit2:retrofit:2.5.0' | |
| implementation 'com.squareup.retrofit2:converter-gson:2.5.0' | |
| implementation 'com.squareup.okhttp3:logging-interceptor:4.2.1' | |
| implementation "androidx.recyclerview:recyclerview:$recyclerview_version" | |
| // For control over item selection of both touch and mouse driven selection | |
| implementation "androidx.recyclerview:recyclerview-selection:$recyclerview_version" | |
| implementation 'de.hdodenhof:circleimageview:3.0.0' | |
| implementation 'com.github.bumptech.glide:glide:4.9.0' | |
| implementation "androidx.cardview:cardview:$cardview_version" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment