Last active
August 2, 2016 03:34
-
-
Save paraya3636/af0b4086d5567033694218433e348727 to your computer and use it in GitHub Desktop.
Please do not use `com.neenbedankt.android-apt` with kapt.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
※It might not work... | |
※I tried Parceler and PaperParcel, But I don't use Parcelable Library by Kotlin. | |
1. Remove apply plugin: 'com.neenbedankt.android-apt' | |
2. Change dependencies kapt to apt | |
dependencies { | |
… | |
kapt 'com.github.grandstaish.paperparcel:compiler:1.0.0' | |
↓ | |
apt 'com.github.grandstaish.paperparcel:compiler:1.0.0' | |
… | |
} | |
Thanks! https://github.com/sockeqwe/fragmentargs/issues/34#issuecomment-155756904 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment