Branch | Tests | Coverage | Linting |
---|---|---|---|
master |
git clone https://github.com/github/dashevo/android-dpp.git
cd android-dpp
./gradlew assemble
- After building, it will be available on the local Maven repository.
- To use it with gradle, add
mavenLocal()
to therepositories
list in yourbuild.gradle
file and addorg.dashj.platform:dpp:0.24-SNAPSHOT
as a dependency.
Add mavenCentral() to the repositories
list in your build.gradle
dependencies {
implementation 'org.dashj.platform:dpp:0.24-SNAPSHOT'
}
Check using ktlint:
./gradlew ktlint
Format using ktlint:
./gradlew ktlintFormat
Run tests with ./gradlew build test
./gradlew uploadArchives