Guest User

Untitled

a guest
Nov 26th, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. dependencies {
  2.  
  3. implementation 'androidx.appcompat:appcompat:1.4.0'
  4. implementation 'com.google.android.material:material:1.4.0'
  5. implementation 'androidx.core:core-ktx:1.7.0'
  6. implementation 'org.jetbrains.kotlin:kotlin-reflect:1.6.0'
  7. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  8. //UI
  9. implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
  10. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  11. //Navigation
  12. implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
  13. implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
  14. implementation 'androidx.navigation:navigation-dynamic-features-fragment:2.3.5'
  15. //Dagger
  16. kapt 'com.google.dagger:dagger-compiler:2.40.1'
  17. implementation 'com.google.dagger:hilt-android:2.40.1'
  18. implementation 'androidx.hilt:hilt-navigation-fragment:1.0.0'
  19. implementation 'com.google.dagger:hilt-compiler:2.40.1'
  20. implementation 'javax.inject:javax.inject:1'
  21. //Network
  22. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  23. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  24. implementation 'com.squareup.okhttp3:okhttp:4.9.1'
  25. implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
  26. implementation 'com.commonsware.cwac:saferoom.x:1.3.0'
  27. // Room Database
  28. implementation 'com.commonsware.cwac:saferoom.x:1.3.0'
  29. implementation 'androidx.room:room-runtime:2.3.0'
  30. implementation 'androidx.room:room-ktx:2.3.0'
  31. kapt 'androidx.room:room-compiler:2.3.0'
  32. //Lifecycle
  33. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0'
  34. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.0'
  35. implementation 'androidx.lifecycle:lifecycle-process:2.4.0'
  36. implementation 'androidx.lifecycle:lifecycle-common-java8:2.4.0'
  37. //Serialization
  38. implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.0-RC'
  39. implementation 'com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:0.8.0'
  40.  
  41. //Test
  42. testImplementation 'junit:junit:4.+'
  43. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  44. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  45. }
Add Comment
Please, Sign In to add comment