Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.22 KB

File metadata and controls

51 lines (40 loc) · 1.22 KB

1. Depend on our library

Parcelled for Android 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 {
    // ...

    // parcelled version
    def parcelled_version = "1.0.0"

    // Java Project
    implementation("com.zeoflow:parcelled-runtime:$parcelled_version")
    annotationProcessor("com.zeoflow:parcelled-compiler:$parcelled_version")

    // Kotlin Project
    implementation("com.zeoflow:parcelled-runtime:$parcelled_version")
    kapt("com.zeoflow:parcelled-compiler:$parcelled_version")

    // ...
}

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

Contributors

Parcelled for Android welcomes contributions from the community. Check out our contributing guidelines before getting started.