Last active
July 27, 2022 05:14
-
-
Save jaredh/8eea98853ce5f26b83c56a7750d903d0 to your computer and use it in GitHub Desktop.
Dependency kitchen sink
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
implementation 'androidx.core:core-ktx:1.8.0' | |
implementation 'androidx.appcompat:appcompat:1.4.2' | |
implementation 'com.google.android.material:material:1.6.1' | |
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | |
implementation 'io.ktor:ktor-client-android:2.0.3' | |
implementation 'io.ktor:ktor-client-core:2.0.3' | |
implementation 'io.ktor:ktor-client-okhttp:2.0.3' | |
implementation 'io.ktor:ktor-client-content-negotiation:2.0.3' | |
implementation 'io.ktor:ktor-serialization-kotlinx-json:2.0.3' | |
implementation 'io.ktor:ktor-client-cio:2.0.3' | |
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0-RC' | |
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2' | |
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.0' | |
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.0' | |
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.0' | |
implementation 'androidx.fragment:fragment-ktx:1.5.0' | |
implementation 'androidx.paging:paging-runtime:3.1.1' | |
implementation 'androidx.recyclerview:recyclerview:1.2.1' | |
implementation 'com.github.bumptech.glide:recyclerview-integration:4.11.0' | |
testImplementation 'junit:junit:4.13.2' | |
androidTestImplementation 'androidx.test.ext:junit:1.1.3' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment