Last active
April 9, 2021 12:03
-
-
Save ajailani4/5ea4e95a4aad40b6f268a4e843288105 to your computer and use it in GitHub Desktop.
Dependency for Spesipon
This file contains 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
dependencies { | |
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | |
implementation 'androidx.core:core-ktx:1.3.2' | |
implementation 'androidx.appcompat:appcompat:1.2.0' | |
implementation 'androidx.activity:activity-ktx:1.2.2' | |
implementation 'androidx.fragment:fragment-ktx:1.3.2' | |
// UI Components | |
implementation 'com.google.android.material:material:1.3.0' | |
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | |
implementation 'androidx.recyclerview:recyclerview:1.1.0' | |
implementation 'androidx.cardview:cardview:1.0.0' | |
implementation 'com.github.bumptech.glide:glide:4.11.0' | |
// Navigation Component | |
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" | |
implementation "androidx.navigation:navigation-ui-ktx:$nav_version" | |
// ViewModel | |
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0" | |
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | |
// Dagger Hilt | |
implementation 'com.google.dagger:hilt-android:2.31.1-alpha' | |
kapt 'com.google.dagger:hilt-android-compiler:2.31.1-alpha' | |
// Paging | |
implementation "androidx.paging:paging-runtime-ktx:3.0.0-beta03" | |
// Networking | |
implementation 'com.squareup.retrofit2:converter-moshi:2.9.0' | |
implementation 'com.squareup.retrofit2:retrofit:2.9.0' | |
testImplementation 'junit:junit:4.13.2' | |
androidTestImplementation 'androidx.test.ext:junit:1.1.2' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment