Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 865 Bytes

getting-started.md

File metadata and controls

40 lines (33 loc) · 865 Bytes

1. Depend on our library

JX is available through Google's Maven Repository. To use it:

  1. Open the build.gradle file for your application.
  2. Make sure that the repositories section includes Google's Maven Repository google(). For example:
  allprojects {
    repositories {
      google()
      jcenter()
    }
  }
  1. Add the library to the dependencies section:
  dependencies {
    // ...
    implementation 'com.zeoflow:jx:<version>'
    // ...
  }

Visit MVN Repository to find the latest version of the library.

Contributors

JX welcomes contributions from the community. Check out our contributing guidelines before getting started.