An Android Common Component(一个用于Android快速开发小工具集合)
- RxJava3
- Android API 19+
- 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
}
}