| 简体中文文档
fastbase is a powerful base library for Android apps.
fastbase is responsible for the implementation of the base library. It properly encapsulates some of the commonly used methods in Android development, and solves some practical problems in development, avoiding repetitive wheel making during the development process, which can greatly improve development efficiency. You only need to simply use the code. Call the relative method.
Gradle:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
dependencies {
implementation 'com.github.wyqlxf:fastbase:1.1.4'
}
You can download a jar from GitHub's releases page.
// Initialize the SDK
FastApp.init(this);
// Open log
FastApp.setLogEnabled(true);
See the Demo file for details. click to download FastDemo.apk
MIT License, See the LICENSE file for details.