Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 596 Bytes

File metadata and controls

24 lines (17 loc) · 596 Bytes

AndroidUtils

Android工具类,收纳了一些日常开发中通常会用到的方法,便于日后的开发,会不停更新,定期打包。

有空会详细描述每个工具类。

集成方式: Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency:

dependencies {
    ...
    implementation 'com.github.Godikov:AndroidUtils:v1.0.1'
}