Port of Google AutoValue for Android with Parcelable generation goodies.
Because it's awesome. I can't explain it better than that.
Because AutoValue is not extensible yet. This fork adds automatic Parcelable implementation for your POJOS. It's easy as just adding implements Parcelable
.
@AutoParcel
abstract class SomeModel implements Parcelable {
abstract String name();
abstract List<SomeSubModel> subModels();
abstract Map<String, OtherSubModel> modelsMap();
static SomeModel create(String name, List<SomeSubModel> subModels, Map<String, OtherSubModel> modelsMap) {
return new AutoParcel_SomeModel(name, subModels, modelsMap);
}
}
That's that simple. And you get Parcelable
, hashCode
, equals
and toString
implementations for free.
As your models evolve you don't need to worry about keeping all the boilerplate in sync with the new implementation, it's already taken care of.
The easy way is to use Gradle.
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.4'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
}
}
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
dependencies {
compile 'com.github.frankiesardo:auto-parcel:0.3'
apt 'com.github.frankiesardo:auto-parcel-processor:0.3'
}
repositories {
mavenCentral()
jcenter()
}
I recommend using the android-apt
plugin so that Android Studio picks up the generated files.
Check out the sample project for a working example.
Copyright 2014 Frankie Sardo
Copyright 2013 Google, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.