Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Fuel | 4,333 | 28 | 2 days ago | 3 | December 14, 2020 | 87 | mit | Kotlin | ||
The easiest HTTP networking library for Kotlin/Android | ||||||||||
Mvvm Kotlin Android Architecture | 2,053 | 5 months ago | 6 | apache-2.0 | Kotlin | |||||
MVVM + Kotlin + Retrofit2 + Hilt + Coroutines + Kotlin Flow + mockK + Espresso + Junit5 | ||||||||||
Awesome Android Kotlin Apps | 1,947 | 3 months ago | 12 | Kotlin | ||||||
👓 A curated list of awesome android kotlin apps by open-source contributors. | ||||||||||
Parse Sdk Android | 1,864 | 1,205 | 10 | 9 days ago | 32 | May 06, 2018 | 126 | other | Java | |
The Android SDK for Parse Platform | ||||||||||
Reaktive | 1,052 | 1 | 17 days ago | 4 | June 13, 2022 | 10 | apache-2.0 | Kotlin | ||
Kotlin multi-platform implementation of Reactive Extensions | ||||||||||
Runtimepermission | 868 | 3 years ago | 5 | apache-2.0 | Java | |||||
Simpliest way to ask runtime permissions on Android, no need to extend class or override permissionResult method, choose your way : Kotlin / Coroutines / RxJava / Java7 / Java8 | ||||||||||
Androidquick | 766 | a year ago | 1 | August 30, 2021 | apache-2.0 | Java | ||||
做外包用的快速开发库--微信、支付宝支付(含签名,下单)、自定义View(验证码/密码,九宫格图片上传等)、换肤、图片预览、RxJava、EventBus、JetPack、CameraX、base层封装等 | ||||||||||
Kedditbysteps | 760 | 4 years ago | 2 | Kotlin | ||||||
Small Reddit Android client developed with Kotlin | ||||||||||
Orbit Mvi | 615 | 3 days ago | 14 | September 25, 2022 | 14 | apache-2.0 | Kotlin | |||
A simple MVI framework for Kotlin Multiplatform and Android | ||||||||||
Mvvmtemplate | 606 | a month ago | 8 | mit | Kotlin | |||||
An Android Template with MVVM and Clean Architecture |
MovieHunt is a sample Android project using The Movie DB API based on MVVM architecture. It showcases the latest Android tech stacks with well-designed architecture and best practices.
The new v2 re-design is available. Check it out now!
We follow Google recommended Guide to app architecture to structure our architecture based on MVVM, reactive UI using LiveData / RxJava observables and data binding.
com.enginebai.moviehunt # Root Package
data # For data modeling layer
local # Local persistence database
| dao # Data Access Object for Room
| | model # Model classes
remote # Remote data source
repo # Repositories for single source of data
|
di # Dependency injection modules
ui # Fragment / View layer
list # List screen Fragment and ViewModel
home # Main screen Fragment and ViewModel
| controller # Epoxy controller for RecyclerView
| models # Epoxy models for RecyclerView
details # Detail screen Fragment and ViewModel
|
utils # Utility Classes / Kotlin extensions
MainActivity # Single activity
AppContext # Application
NavigationRouter # Navigation controller
You will need to provide developer key to fetch the data from TMDB API.
ApiKey.kt
in path ./buildSrc/src/main/kotlin/
.TMDB_API_KEY
with the double quotes, it looks likeconst val TMDB_API_KEY = "\"90c05******************655\""
./buildSrc/src/main/kotlin/Config.kt
:defaultConfig {
...
buildConfigField("String", "TMDB_API_KEY", TMDB_API_KEY)
...
}
NOTE: It's important to keep the double quotes for this value, since it's used as String type build config fields, the field name in quotes, the field value in escaped quotes additionally. If you're missing the double quotes, it will build fail.
Copyright (c) 2020 Engine Bai
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.