/VastUtils

Easy Quick Android Utils for you to faster project development.

Primary LanguageKotlinApache License 2.0Apache-2.0

VastUtils

Easy Quick Android Utils for you to faster project development.

English | 简体中文

Documentation

The VastDocs provides you with detailed usage examples, click here to view the detailed documentation

Quick start

  • VastNetStateLayout

    A layout to set customized network state ui.

    implementation 'io.github.sakurajimamaii:VastNetStateLayout:0.0.3'
  • VastTools

    Easy Quick Android Tools for you to faster project development.

    implementation 'io.github.sakurajimamaii:VastTools:0.0.8'
  • VastAdapter

    Help you quickly build an Adapter suitable for RecyclerView.

    implementation 'io.github.sakurajimamaii:VastAdapter:0.0.5'

Package jar

Because the new version will be released in MavenCentral only after the test is over, so if you want to experience the latest features, you can follow the steps below to package the jar.

Add the following content to the build.gradle.kts of the corresponding module, taking VastTools as an example:

val JAR_PATH = "build/intermediates/runtime_library_classes_jar/release/"
val JAR_NAME = "classes.jar"
val DESTINATION_PATH = "libs"
val NEW_NAME = "VastTools_0.0.9_Cancey.jar"

tasks.register("makeJar",Copy::class){
    delete(DESTINATION_PATH + NEW_NAME)
    from(JAR_PATH + JAR_NAME)
    into(DESTINATION_PATH)
    rename(JAR_NAME, NEW_NAME)
}.dependsOn("build")

Select Android Studio Gradle -> libraries -> VastTools -> Tasks -> other -> makeJar .

Get the VastTools_0.0.9_Cancey.jar .

Dependencies

Since the project uses Composingbuilds module for project management, you can get project dependency information at PluginVersion.

Acknowledgements

Thanks to the following users for helping me with the development project.

Avator Name Website
lt https://github.com/ltttttttttttt
夜里的向日葵 https://github.com/lookup-cat