Skip to content

crisolutions/commonlibrary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fb931b2 · Nov 6, 2020
Nov 25, 2019
Nov 6, 2020
Nov 6, 2020
Nov 6, 2020
Nov 6, 2020
Jul 5, 2019
Nov 11, 2018
Jul 2, 2019
Feb 26, 2019
Nov 6, 2020
Oct 30, 2018
Apr 20, 2018
Apr 20, 2018
Mar 16, 2018

Repository files navigation

Common Library

Release Build Status

Library of the Common module from CRI Solutions.

Getting Started

To get the library setup, add it in your root build.gradle at the end of repositories:

allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

And then add the dependency :

implementation 'com.github.crisolutions:commonlibrary:x.y.z'

To use just the Kotlin module of the library, of the module commonlibktx, you may only add this instead :

implementation 'com.github.crisolutions.commonlibrary:commonlibktx:x.y.z'

where x.y.z is the latest release available.

Finally, update the Source and Target Compatibility to 1.8 in Project Structure for whichever module this dependency is being added to, or add

android {
        ...
	compileOptions {
       	    sourceCompatibility JavaVersion.VERSION_1_8
	    targetCompatibility JavaVersion.VERSION_1_8
	}
}

to the module's gradle file.

Releasing

The RELEASING.md file includes information on the releasing process for the library.