We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Android Studio 3.5.1, Java (and a bit of kotlin but not with kapt and not with paperparcel).
Works: 2.0.6 (2.0.4 was what I used before so that I have tested, but 2.0.6 compiles). Fails: 2.0.7, 2.0.8.
I can just stay on 2.0.6 for now.
It gives compiles errors for all classes that use @PaperParcel, and says error: cannot find symbol class PaperParcel
error: cannot find symbol class PaperParcel
import paperparcel.PaperParcel; @PaperParcel
This is my gradle.properties (in case its relevant)
org.gradle.jvmargs=-Xmx4608M #android.databinding.enableV2=true android.useAndroidX=true android.enableJetifier=true
I also tried with
org.gradle.jvmargs=-Xmx4608M #android.databinding.enableV2=true android.useAndroidX=true android.enableJetifier=true android.databinding.incremental=true android.lifecycleProcessor.incremental=true
I use databindings.
I've added a cleaned up version of my build.gradle in case there's something in there of relevance to you.
build.gradle-app.txt
The text was updated successfully, but these errors were encountered:
I'm having the same issue. Is there any fix for this?
Sorry, something went wrong.
#222 has the fix: need to add implementation "nz.bradcampbell:paperparcel-api:2.0.8" for now.
implementation "nz.bradcampbell:paperparcel-api:2.0.8"
Great! Thanks @mxia
ah great, that extra dependency fixes this. I close this since its a duplicate of the other issue, and the solution works.
No branches or pull requests
Using Android Studio 3.5.1, Java (and a bit of kotlin but not with kapt and not with paperparcel).
Works: 2.0.6 (2.0.4 was what I used before so that I have tested, but 2.0.6 compiles).
Fails: 2.0.7, 2.0.8.
I can just stay on 2.0.6 for now.
It gives compiles errors for all classes that use @PaperParcel, and says
error: cannot find symbol class PaperParcel
This is my gradle.properties (in case its relevant)
I also tried with
I use databindings.
I've added a cleaned up version of my build.gradle in case there's something in there of relevance to you.
build.gradle-app.txt
The text was updated successfully, but these errors were encountered: