All Projects → muratcanbur → Projectx

muratcanbur / Projectx

Licence: mit
This repository might be a starting point for building Android interview tasks. There is also providing a basic sample template based on layered architecture using Dagger2 and Architecture Components.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Projectx

Weatherapp
5 Day Forecast app that works on Android and uses latest tools (Kotlin, Navigation, Room, LiveData, Databinding, Dagger 2)
Stars: ✭ 426 (+152.07%)
Mutual labels:  rxjava, dagger2, viewmodel
Android Clean Architecture Mvvm Dagger Rx
Implemented by Clean Architecture, Dagger2, MVVM, LiveData, RX, Retrofit2, Room, Anko
Stars: ✭ 138 (-18.34%)
Mutual labels:  rxjava, dagger2, livedata
Gank
干货集中营 app 安卓实现,基于 RxFlux 架构使用了 RxJava、Retrofit、Glide、Koin等
Stars: ✭ 444 (+162.72%)
Mutual labels:  rxjava, dagger2, viewmodel
Android Jetpack Demo
🔥 快速入门Android Jetpack以及相关Kotlin、RxJava、MVVM等主流技术,独立构架App的基础技能
Stars: ✭ 335 (+98.22%)
Mutual labels:  rxjava, viewmodel, livedata
Android Mvvm Rx3 Dagger2 Navcomponent
Implemented using MVVM, LiveData, Room, RX3, Dagger2, Coil, View Binding, Navigation Component and AndroidX
Stars: ✭ 72 (-57.4%)
Mutual labels:  rxjava, dagger2, livedata
Wanandroid
🏄 基于Architecture Components dependencies (Lifecycles,LiveData,ViewModel,Room)构建的WanAndroid开源项目。 你值得拥有的MVVM快速开发框架:https://github.com/jenly1314/MVVMFrame
Stars: ✭ 410 (+142.6%)
Mutual labels:  dagger2, viewmodel, livedata
T Mvvm
This repository contains a detailed sample app that implements MVVM architecture using LiveData,ViewModel,Retrofit,Rxjava
Stars: ✭ 630 (+272.78%)
Mutual labels:  rxjava, viewmodel, livedata
catchflicks
🎬 Kitchen sink project for learning android concepts 🎬
Stars: ✭ 12 (-92.9%)
Mutual labels:  rxjava, dagger2, viewmodel
Githubprojectbrowser
This is a sample Android Project that is based on Clean Architecture
Stars: ✭ 64 (-62.13%)
Mutual labels:  dagger2, viewmodel, livedata
Retrokotlin
Simple Android app to show how unit testing with MockWebServer and Architecture Components (ViewModel + LiveData)
Stars: ✭ 55 (-67.46%)
Mutual labels:  dagger2, viewmodel, livedata
News Sample App
A sample news app which demonstrates clean architecture and best practices for developing android app
Stars: ✭ 334 (+97.63%)
Mutual labels:  dagger2, viewmodel, livedata
Mentorship Android
Mentorship System is an application that matches women in tech to mentor each other, on career development, through 1:1 relations during a certain period of time. This is the Android application of this project.
Stars: ✭ 117 (-30.77%)
Mutual labels:  rxjava, viewmodel, livedata
Githubarchitecturecomponents
The implementation of Android "Architecture Components" sample explained by Google : https://developer.android.com/topic/libraries/architecture/guide.html
Stars: ✭ 302 (+78.7%)
Mutual labels:  dagger2, viewmodel, livedata
Mvvmarms
Android MVVM Architecture Components based on MVPArms and Android Architecture Components.
Stars: ✭ 425 (+151.48%)
Mutual labels:  dagger2, viewmodel, livedata
searchi
Demo of PagedListAdapter, PageKeyedDataSource, LiveData, ViewModel in Kotlin
Stars: ✭ 13 (-92.31%)
Mutual labels:  dagger2, viewmodel, livedata
Changedetection
Automatically track websites changes on Android in background.
Stars: ✭ 563 (+233.14%)
Mutual labels:  dagger2, viewmodel, livedata
GithubApp-android-architecture
Let's learn a deep look at the Android architecture
Stars: ✭ 16 (-90.53%)
Mutual labels:  dagger2, viewmodel, livedata
Android-Mvi-Starter
Android MVI Starter application
Stars: ✭ 19 (-88.76%)
Mutual labels:  dagger2, viewmodel, livedata
Base Mvvm
App built to showcase basic Android View components like ViewPager, RecyclerView(homogeneous and heterogeneous items), NavigationDrawer, Animated Vector Drawables, Collapsing Toolbar Layout etc. housed in a MVVM architecture
Stars: ✭ 18 (-89.35%)
Mutual labels:  dagger2, viewmodel, livedata
Android Livedata Viewmodel
Android app that demonstrates how to use new Architecture components.
Stars: ✭ 114 (-32.54%)
Mutual labels:  dagger2, viewmodel, livedata

ProjectX

Android App using The Movie DB API

Description

a simple app that contains some basic functionality. It connects to the Movies DB API and fetch current popular TV shows on TMDb.

Tech Stack

  • Dagger 2 - Used to provide dependency injection
  • Retrofit 2 - OkHttp3 - request/response API
  • Glide - for image loading.
  • RxJava 2 - reactive programming paradigm
  • LiveData - use LiveData to see UI update with data changes.
  • Data Binding - bind UI components in layouts to data sources

Overview of app arch.

  • follow the rules from Architecture guidelines recommended by Google.
  • keep Activity only responsible for UI related code
  • ViewModel provides data required by the UI class
  • Repository layer provides data to ViewModel classes. (single source of truth)

Unit testing and Application Arch.

. ViewModel and ViewStates classes should be tested.

ViewModel

need to make sure that the correct state changes occur at the right time during remote data request.

ViewState

ViewStates are responsible for reporting changes to the UI.

Blog posts about project

TODO for near future

  • [ ] implement local storage example
  • [ ] implement coroutines example
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].