liteadapter

LiteAdapter

License

License

GroupId

GroupId

io.github.chengjie-jlu
ArtifactId

ArtifactId

liteadapter
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

liteadapter
LiteAdapter
Project URL

Project URL

https://chengjie-jlu.github.io/

Download liteadapter

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.chengjie-jlu/liteadapter/ -->
<dependency>
    <groupId>io.github.chengjie-jlu</groupId>
    <artifactId>liteadapter</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/io.github.chengjie-jlu/liteadapter/
implementation 'io.github.chengjie-jlu:liteadapter:1.0.0'
// https://jarcasting.com/artifacts/io.github.chengjie-jlu/liteadapter/
implementation ("io.github.chengjie-jlu:liteadapter:1.0.0")
'io.github.chengjie-jlu:liteadapter:aar:1.0.0'
<dependency org="io.github.chengjie-jlu" name="liteadapter" rev="1.0.0">
  <artifact name="liteadapter" type="aar" />
</dependency>
@Grapes(
@Grab(group='io.github.chengjie-jlu', module='liteadapter', version='1.0.0')
)
libraryDependencies += "io.github.chengjie-jlu" % "liteadapter" % "1.0.0"
[io.github.chengjie-jlu/liteadapter "1.0.0"]

Dependencies

compile (1)

Group / Artifact Type Version
androidx.recyclerview » recyclerview jar 1.2.0

Project Modules

There are no modules declared in this project.

LiteAdapter

The lite adapter is a new RecyclerView coding style, which dose not provide complex function. Its goal is to reduce the work of the adapter, let each view take their own data binding work.

Usage

  1. Add mavenCentral dependence in your project root directory level build.gradle file.
buildscript {
    repositories {
        google()
        mavenCentral() // add this line
    }
}

allprojects {
    repositories {
        google()
        mavenCentral() // add this line
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
  1. Add LiteAdapter dependence in your module directory level build.gradle file.
dependencies {
    ...
    implementation 'io.github.chengjie-jlu:liteadapter:1.0.0' // add this line
}
  1. Sync your project.

Versions

Version
1.0.0