All Projects → auron567 → Gallerit

auron567 / Gallerit

Licence: mit
A sample Android gallery to search images posted on Reddit built using modern Android development tools (Architecture Components, MVVM, Coroutines, Flow, Navigation, Retrofit, Room, Koin)

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Gallerit

DeezerClone
This Application using Dagger Hilt, Coroutines, Flow, Jetpack (Room, ViewModel, LiveData),Navigation based on MVVM architecture.
Stars: ✭ 81 (-47.06%)
Mutual labels:  room, navigation, coroutines, mvvm, viewmodel, livedata
Mvvmsmart
基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合ViewModel+Lifecycles+Navigation+DataBinding+LiveData+Okhttp+Retrofit+RxJava+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发高质量、易维护的Android应用。 项目组会持续维护,请放心使用.欢迎Start并Fork交流.
Stars: ✭ 382 (+149.67%)
Mutual labels:  mvvm, viewmodel, room, navigation, retrofit2, livedata
GitHubApplication
GitHubApplication 📱 is an Android application built to demonstrate the use of modern Android development tools - (Kotlin, Coroutines, Hilt, LiveData, View binding, Data Store, Architecture components, MVVM, Room, Retrofit, Navigation).
Stars: ✭ 11 (-92.81%)
Mutual labels:  room, navigation, coroutines, mvvm, retrofit2
Foodium
It simply loads Posts data from API and stores it in persistence storage (i.e. SQLite Database). Posts will be always loaded from local database. Remote data (from API) and Local data is always synchronized.
Stars: ✭ 1,940 (+1167.97%)
Mutual labels:  coroutines, mvvm, room, retrofit2, livedata
Coolweather
Weather App that uses Android best practices. Android Jetpack, clean architecture. Written in Kotlin
Stars: ✭ 154 (+0.65%)
Mutual labels:  coroutines, mvvm, viewmodel, room, retrofit2
Superhero-App
🦸🏻‍♂️🦹🏻‍♀️Superhero app built with Kotlin, ViewModel, LiveData, ViewBinding, Room, and Hilt
Stars: ✭ 27 (-82.35%)
Mutual labels:  room, coroutines, viewmodel, retrofit2, livedata
MockAppMVVM
A sample app structure using the MVVM architecture using Retrofit, Dagger2, LiveData, RxJava, ViewModel and Room.
Stars: ✭ 14 (-90.85%)
Mutual labels:  room, navigation, viewmodel, retrofit2, livedata
modern-android
Modern Android Project Skeleton
Stars: ✭ 17 (-88.89%)
Mutual labels:  room, coroutines, mvvm, viewmodel, repository-pattern
Android Jetpack Demo
🔥 快速入门Android Jetpack以及相关Kotlin、RxJava、MVVM等主流技术,独立构架App的基础技能
Stars: ✭ 335 (+118.95%)
Mutual labels:  mvvm, viewmodel, room, navigation, livedata
Jetpack Wanandroid
Kotlin+Jetpack+Coroutines+Retrofit+koin 完成的MVVM 组件化客户端 🔥🔥
Stars: ✭ 353 (+130.72%)
Mutual labels:  coroutines, mvvm, viewmodel, room, livedata
Simple-Notes-Kotlin-App
✍️ Simple Note Making App use mvvm architecture , dagger , coroutines and navigation component. Features includes 🗒️ create , edit and ❌ delete notes
Stars: ✭ 40 (-73.86%)
Mutual labels:  room, coroutines, viewmodel, repository-pattern, livedata
Mvvmarms
Android MVVM Architecture Components based on MVPArms and Android Architecture Components.
Stars: ✭ 425 (+177.78%)
Mutual labels:  mvvm, viewmodel, room, retrofit2, livedata
Dagger-Hilt-MVVM
Sample app that demonstrates the usage of Dagger Hilt with Kotlin & MVVM
Stars: ✭ 62 (-59.48%)
Mutual labels:  room, coroutines, viewmodel, retrofit2, livedata
Android Mvvm Coroutine
Kotlin android application example with MVVM pattern, android architecture, kotlin coroutine, unit test, and UI test
Stars: ✭ 111 (-27.45%)
Mutual labels:  coroutines, viewmodel, room, repository-pattern, livedata
Jethub
Sample App with Jetpack components(LiveData, Navigation, ViewModel) + MVVM + coroutine + single activity
Stars: ✭ 224 (+46.41%)
Mutual labels:  coroutines, mvvm, viewmodel, navigation, livedata
The Movie Db Kotlin
The Movie DB app using Kotlin with updated Android features
Stars: ✭ 176 (+15.03%)
Mutual labels:  coroutines, mvvm, room, navigation, retrofit2
Mvvmframe
🏰 MVVMFrame for Android 是一个基于Google官方推出的Architecture Components dependencies(现在叫JetPack){ Lifecycle,LiveData,ViewModel,Room } 构建的快速开发框架。有了MVVMFrame的加持,从此构建一个MVVM模式的项目变得快捷简单。
Stars: ✭ 218 (+42.48%)
Mutual labels:  mvvm, viewmodel, room, retrofit2, livedata
Kotlinjetpackinaction
🔥🔥 Kotlin Jetpack zero to hero. 新手到高手
Stars: ✭ 264 (+72.55%)
Mutual labels:  coroutines, mvvm, viewmodel, retrofit2, livedata
Wanandroid
🏄 基于Architecture Components dependencies (Lifecycles,LiveData,ViewModel,Room)构建的WanAndroid开源项目。 你值得拥有的MVVM快速开发框架:https://github.com/jenly1314/MVVMFrame
Stars: ✭ 410 (+167.97%)
Mutual labels:  mvvm, viewmodel, room, retrofit2, 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 (-88.24%)
Mutual labels:  mvvm, viewmodel, room, retrofit2, livedata

Header

Gallerit

Kotlin AGP Gradle

Kotlin Weekly

Gallerit is a small demo application that presents a modern approach to Android development with up to date tech-stack. The goal of the project is to demonstrate best practices using modern Android development tools and presenting an architecture that is scalable, maintainable, and testable.

Project characteristics

Libraries

  • Coroutines - For managing background threads.
  • Flow - A cold asynchronous data stream that sequentially emits values.
  • StateFlow - A Flow that represents a state with a single updatable data value.
  • Jetpack
    • ViewModel - Store UI-related data that isn't destroyed on app rotations.
    • LiveData - Build data objects that notify views when the underlying database changes.
    • Lifecycle - Create a UI that automatically responds to lifecycle events.
    • Navigation - Handle everything needed for in-app navigation.
    • Room - Access your app's SQLite database with in-app objects and compile-time checks.
  • Retrofit - A type-safe HTTP client.
  • Glide - An image loading and caching library.
  • PhotoView - Implementation of ImageView that supports zooming.
  • Koin - A pragmatic lightweight dependency injection framework.
  • Timber - A logger with a small, extensible API.
  • MockK - Mocking library for Kotlin.
  • Kotest - Powerful, elegant and flexible test framework for Kotlin.
  • and more...

Architecture

Gallerit is based on MVVM architecture, fetching data from the network and integrating persisted data in the database via repository pattern.

Architecture

Reddit API

Gallerit uses the Reddit API to load images on the gallery screen.

GitHub Actions

GitHub Actions verify project correctness on every push to master branch and on every PR. All of the tasks run in parallel.

These are all of the Gradle tasks that are workflows:

  • ./gradlew test - Run unit tests
  • ./gradlew detekt - Run detekt
  • ./gradlew lint - Run Android lint
  • ./gradlew ktlintCheck - Run ktlint check
  • ./gradlew assembleDebug - Build debug APK

Getting started

There are a few ways to open this project.

Android Studio

  1. Android Studio -> File -> New -> Project from Version Control
  2. Enter https://github.com/auron567/Gallerit.git into URL field

Command line + Android Studio

  1. Run git clone https://github.com/auron567/Gallerit.git
  2. Android Studio -> File -> Open

Contribute

If you want to contribute to this application, you're always welcome! You can contribute by filing issues, bugs and PRs.

License

All the code available under the MIT License. See LICENSE.

MIT License

Copyright (c) 2020 Mario Salvatore

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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].