A simple AOP tool that helps Android developers quickly implement Parcelable interfaces
buildscript {
repositories {
....
maven{
url "https://dl.bintray.com/wuhaoxuan1225/maven/"
}
}
dependencies {
....
classpath 'com.skateboard.parcelablehelper:parcelablehelper:1.0.0'
....
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
apply plugin: 'parcelablehelper'
@Parcelable
public class Demo {
private String name;
}
Now this tools only support builtin type,String and Parcelable,include array and list