Parcelled for Android is available through Google's Maven Repository. To use it:
- Open the
build.gradlefile for your application. - Make sure that the
repositoriessection includes Google's Maven Repositorygoogle(). For example:
allprojects {
repositories {
google()
jcenter()
}
}- Add the library to the
dependenciessection:
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.
Parcelled for Android welcomes contributions from the community. Check out our contributing guidelines before getting started.