- Following Clean Architecture.
- MVVM Architecture.
- Repository pattern.
- Use Cases.
- Applying SOLID principles, each class has a single job with separation of concerns by making classes independent of each other and communicating with interfaces.
- Using Kotlin-KTS & buildSrc to handle project dependencies.
- Navigation component - navigation graph for navigating and replacing screens/fragments
- DataBinding - allows to more easily write code that interacts with views and replaces
findViewById
. - ViewModel - UI related data holder, lifecycle aware.
- Flow & StateFlow - Build data objects that notify views when the underlying database changes.
- Dagger-Hilt for dependency injection. Object creation and scoping is handled by Hilt.
- Kotlin Coroutines - for managing background threads with simplified code and reducing needs for callbacks
- Retrofit2 & OkHttp3 - to make REST requests to the web service integrated.
- Coil - for image loading.
- Material Bottom Navigation - to handle bottom tabs with support for multiple backStack.
- Sample includes some basic features required in each project like :
- Splash.
- App Tutorial.
- Login - (With Business Logic).
- Sign Up - (Blank Screens).
- Forgot Password -(Blanck Screens).
- Home Screen - (Contains 3 Tabs with 3 NavGraphs).
- You will find extra modules also developed by me like :
- AppTutorial - (To handle onBoarding tutorial screens).
- ActionChooser - (A customized pop up with recyclerView of single selection).
- PrettyPopUp (A customized pop up to display message to user with two actions (positive & negative buttons)).
- ImagesSlider (An images slider supports auto scrolling for images from url and support GIF images).
- Following official kotlin code style
- To apply git hooks in order to automate process of styling and checking your code, just follow this steps:
- Copy
pre-commit
file depending on your OS frommyGitHooks
. - Paste it into
.git/hooks
in your project.
- Copy
- Now each time you commit your changes,
ktlintFormat
andktlintCheck
will automatically run
- Here are some useful Gradle commands for executing this example:
./gradlew clean
- Deletes build directory.
- Apply ktlint for checking code style.
- Use git hooks to automate code checking and styling before any new commit.
- Use Flow in Domain layer.
- Use StateFlow in Presentation layer.
- Use UseCases.
- Handle Different Build Variants.
- Use Ktor as network client instead of Retrofit & OKHTTP.
- Use Data Store instead of Shared Preferences.
- Explore full MVI implementation.
- Add some unit tests.
- Just fork this repository and contribute back using pull requests.
- Any contributions, large or small, major features, bug fixes, are welcomed and appreciated but will be thoroughly reviewed .
- Support it by clicking the β button on the upper right of this page. βοΈ
If this project help you reduce time to develop, you can give me a cup of coffee :)
Copyright (C) 2021 MINA MIKHAIL PRIVATE LIMITED
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.