Project
This is one kind of boilerplate for writing android apps using the android official architecture component approach. You can download it, modify it and start building your apps on top of it.
Setup
implementation 'com.github.thepacific:guava-jvm:2.0.1'
implementation 'com.github.thepacific:guava-android:2.0.1'
implementation 'com.github.thepacific:guava-android-ui:2.0.1'
Dependencies
- Jetpack:
- Android KTX - provide concise, idiomatic Kotlin to Jetpack and Android platform APIs.
- AndroidX - major improvement to the original Android Support Library, which is no longer maintained.
- Benchmark - handles warmup, measures your code performance, and outputs benchmarking results to the Android Studio console.
- Data Binding - allows you to bind UI components in your layouts to data sources in your app using a declarative format rather than programmatically.
- Lifecycle - perform actions in response to a change in the lifecycle status of another component, such as activities and fragments.
- LiveData - lifecycle-aware, meaning it respects the lifecycle of other app components, such as activities, fragments, or services.
- Navigation - helps you implement navigation, from simple button clicks to more complex patterns, such as app bars and the navigation drawer.
- Paging - helps you load and display small chunks of data at a time. Loading partial data on demand reduces usage of network bandwidth and system resources.
- Room - persistence library provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
- ViewModel - designed to store and manage UI-related data in a lifecycle conscious way. The ViewModel class allows data to survive configuration changes such as screen rotations.
- Coroutines - managing background threads with simplified code and reducing needs for callbacks.
- Dagger2 - dependency injector for replacement all FactoryFactory classes.
- Retrofit - type-safe HTTP client.
- Coil - image loading library for Android backed by Kotlin Coroutines.
- Moshi - makes it easy to parse JSON into Kotlin objects.
- Timber - a logger with a small, extensible API which provides utility on top of Android's normal Log class.
- Stetho - debug bridge for applications via Chrome Developer Tools.
- and more...
Test dependencies
- UIAutomator - a UI testing framework suitable for cross-app functional UI testing across system and installed apps.
- Espresso - to write concise, beautiful, and reliable Android UI tests
- Robolectric - industry-standard unit testing framework for Android.
- JUnit - a simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks.
- Mockito - most popular Mocking framework for unit tests written in Java.
- Mockk - provides DSL to mock behavior. Built from zero to fit Kotlin language.
- AndroidX - the androidx test library provides an extensive framework for testing Android apps.
- and more...
Plugins
- Ktlint - an anti-bikeshedding Kotlin linter with built-in formatter.
- Detekt - a static code analysis tool for the Kotlin programming language.
- Spotless - a code formatter can do more than just find formatting errors.
- Versions - make easy to determine which dependencies have updates.
- SafeArgs - generates simple object and builder classes for type-safe navigation and access to any associated arguments.
- Jacoco - code coverage library
- and more...
Resources
Projects
This is project is a sample, to inspire you and should handle most of the common cases, but obviously not all. If you need to take a look at additional resources to find solutions for your project, visit these interesting projects:
- iosched (by google) - official Android application from google IO 2019.
- plaid (by android) - app which provides design news & inspiration, being an example of implementing material design.
- sunflower (by android) - a gardening app illustrating Android development best practices with Android Jetpack.
- architecture-components-samples (by android) - collection of samples for Android Architecture Components.
- architecture-sample (by android) - collection of samples to discuss and showcase different architectural tools and patterns for Android apps.
- android-clean-architecture-boilerplate (by bufferapp) - an android boilerplate project using clean architecture
- android-kotlin-clean-architecture (by sanogueralorenzo) - android sample Clean Architecture app written in Kotlin.
- modularization-example (by JeroenMols) - easy to understand real-life example of a modularized Android app.
- lego-catalog (by Eli-Fox) - app illustrating current Android Architecture state using Android development best practices.
- tivi (by chrisbanes) - an app which attempts to use the latest cutting edge libraries and tools.
- android-showcase (by igorwojda) - app following best practices: Kotlin, coroutines, Clean Architecture, feature modules, tests, MVVM, static analysis.
Articles
A collection of very interesting articles related last android community tendencies and recommendations for start to take in consideration for your current/next project:
- Transform monolith to modularization application
- Using the Navigation Component in a Modular World
- Dependency injection in a multi module project
- ViewModels and LiveData: Patterns + AntiPatterns
- Dynamic feature and regular modules using Dagger2
- Android Architecture starring Kotlin Coroutines, Jetpack (MVVM, Room, Paging), Retrofit and Dagger 2
- Official Kotlin Style Guide with Ktlint
- Gradle dependency management with Kotlin (buildSrc)
- Detecting Kotlin Code Smells with Detekt
- Best coding practices, tips and more for Android
Libraries
The open-source community create and maintains tons of awesome libraries making your job more easy, giving the opportunity to use them in your developments. Here are a very important collection of them:
- awesome-android-ui - collection list of awesome Android UI/UX libraries.
- awesome-android-libraries - collection of awesome Kotlin related stuff.
- android-arsenal - android developer portal with tools, libraries, and apps.
Best practices
Avoid reinventing the wheel by following these guidelines:
Codelabs
Google Developers Codelabs provide a guided, tutorial, hands-on coding experience. Most codelabs will step you through the process of building a small application, or adding a new feature to an existing application. They cover a wide range of android concepts to learn and practice:
License
Copyright 2020 thepacific.com
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.