Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 2.06 KB

README.md

File metadata and controls

48 lines (38 loc) · 2.06 KB

Dash Platform Protocol (DPP) for JVM

License dashevo/android-dpp

Branch Tests Coverage Linting
master Tests codecov Lint

Build and Publish to Local Repository

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 the repositories list in your build.gradle file and add org.dashj.platform:dpp:0.24-SNAPSHOT as a dependency.

Usage

Add mavenCentral() to the repositories list in your build.gradle

dependencies {
    implementation 'org.dashj.platform:dpp:0.24-SNAPSHOT'
}

KtLint

Check using ktlint:

./gradlew ktlint

Format using ktlint:

./gradlew ktlintFormat

Tests

Run tests with ./gradlew build test

Debugging Tools

Publish to Maven Central

./gradlew uploadArchives