Android - Adding libraries to gradle file - quick reference
The following lines of codes, which helps you to add the Gradle dependencies for your project quickly. I have listed out the widely used Gradle dependencies. Please let me know in the comment section if you like to add any other libraries. Let's check.. //Constraint Layout implementation 'androidx.constraintlayout:constraintlayout:1.1.3' //Material Design implementation 'com.google.android.material:material:1.3.0-alpha02' //Kotlin Coroutines implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8" //Retrofit - for async API calls implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' //Lifecycle implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' //Kodein - Dependency Injection framework implementation 'com.eygraber:kodein-di-generic-jvm:5.2.1' implemen...