App Name - FOODY
Language Used - KOTLIN
Architecture Used - MVVM
Software Used - ANDROID STUDIO
API Used - Spoonacular API
- Data Binding
- Dependency Injection
- Shimmer Layout
- Motion Layout
- ROOM
- Retrofit
- Dark Theme
- Kotlin Coroutines
- Local Cache
- Search API
- Navigation Component
- Jetpack Datastore
- Material Design
- Recycler View DiffUtil
- Web View
// Coordinator Layout
implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
// Material Components
implementation 'com.google.android.material:material:1.3.0-alpha03'
// Navigation Component
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'
// Room components
implementation "androidx.room:room-runtime:2.2.5"
kapt "androidx.room:room-compiler:2.2.5"
implementation "androidx.room:room-ktx:2.2.5"
androidTestImplementation "androidx.room:room-testing:2.2.5"
// Data binding
kapt "com.android.databinding:compiler:3.2.0-alpha10"
kapt "androidx.databinding:databinding-common:4.0.2"
// DataStore
implementation "androidx.datastore:datastore-preferences:1.0.0-alpha01"
// Recyclerview
implementation 'androidx.recyclerview:recyclerview:1.1.0'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
//Dagger - Hilt
implementation "com.google.dagger:hilt-android:2.28-alpha"
kapt "com.google.dagger:hilt-android-compiler:2.28-alpha"
implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha02"
kapt "androidx.hilt:hilt-compiler:1.0.0-alpha02"
// Coroutines
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
// Lifecycle
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0"
// Image Loading library Coil
implementation "io.coil-kt:coil:0.13.0"
// Gson
implementation 'com.google.code.gson:gson:2.8.6'
// Shimmer
implementation 'com.facebook.shimmer:shimmer:0.5.0'
implementation 'com.todkars:shimmer-recyclerview:0.4.0'
// Jsoup
implementation 'org.jsoup:jsoup:1.13.1'