Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 886 Bytes

File metadata and controls

38 lines (33 loc) · 886 Bytes

EasyCommon

An Android Common Component(一个用于Android快速开发小工具集合)

Old Version

New

  • RxJava3
  • Android API 19+

How to

  • To get a Git project into your build:
  • Step 1. Add the JitPack repository to your build file
allprojects {
	repositories {
		// ...
		maven { url 'https://jitpack.io' }
	}
}
  • Step 2. Add the dependency
 implementation 'com.github.LimeVista.EasyCommon:common:{version}'
  • Step 3.CompileOptions
android {
    // ...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}