A suite of Android libraries that contain common functionality I use in projects.
- commons-core
- commons-ktx
- commons-window-anims
- commons-recyclerview
- commons-material
- commons-navigation
- commons-device-info
- commons-network
- commons-widgets
- commons-listeners
- Make sure that you've added the
mavenCentral()repository to your top-levelbuild.gradlefile.
buildscript { //... repositories { //... mavenCentral() } //... }- Add the specific library dependency to your module-level
build.gradlefile.
dependencies { //... implementation "com.paulrybitskyi.commons:commons-core:1.0.4" implementation "com.paulrybitskyi.commons:commons-ktx:1.0.4" implementation "com.paulrybitskyi.commons:commons-window-anims:1.0.2" implementation "com.paulrybitskyi.commons:commons-recyclerview:1.0.2" implementation "com.paulrybitskyi.commons:commons-material:1.0.3" implementation "com.paulrybitskyi.commons:commons-navigation:1.0.3" implementation "com.paulrybitskyi.commons:commons-device-info:1.0.2" implementation "com.paulrybitskyi.commons:commons-network:1.0.3" implementation "com.paulrybitskyi.commons:commons-widgets:1.0.3" implementation "com.paulrybitskyi.commons:commons-listeners:1.0.3" //... }Android-Commons is licensed under the Apache 2.0 License.