- Android Support v4 (Development Framework)
The Android Support Library is not actually a single library, but rather a collection of libraries that can roughly be divided into two groups: compatibility and component libraries. For details, please see
Understanding the Android Support Library.
- AppCompat (Utility)
support newer Android features on older Android versions.
- Constraint Layout Library (Utility)
library to reduce the number of nested views needed.
- Androidx Core (Utility)
a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs.
- Lifecycle (Utility)
perform actions in response to a change in the lifecycle status of another component, such as activities and fragments.
- Navigation (Utility)
a framework for navigating between 'destinations' within an Android application that provides a consistent API whether destinations are implemented as Fragments, Activities, or other components.
- Preference (Utility)
a library to build interactive settings screens without needing to interact with device storage or manage the UI.
- Room (Utility)
a persistence library that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
- WorkManager (Utility)
an API that makes it easy to schedule deferrable, asynchronous tasks that must be run reliably .
- Assent (Utility)
Android Runtime Permissions made easy and compact, for Kotlin and AndroidX.
- Google Material Design (Utility)
library to help with material design guidelines.
- WhatTheStack (Utility)
a library to make debugging experience on Android better.
- kotlinx.coroutines (Utility)
library support for Kotlin coroutines.
- andColorPicker (UI Component)
color picker views and utilities.