-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
Android mergeDexRelease task fails #109
Comments
I thought this might have been related to the fact that I started using |
Some more information on this. I reverted to I noticed that, in 0.4.0, I have only these directories
whereas in 0.6.0 I have
That extra |
Hi @wasnotrice — thanks for reporting this, and apologies. It looks like we are including it twice as the new type generation includes the serialization library. Can you try removing the following lines from your implementation('com.diem:client-sdk-java:1.0.5') {
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15to18'
} I modified the master branch accordingly here |
@StuartHarris thanks for looking at this issue. That does seem like the solution, but after removing the diem client sdk entry from my Removing the diem client sdk entry from If I build an unsigned bundle, it seems to work ok, it's just the signed bundle (the important one) that fails. |
The |
Sorry just read that again. It shouldn't be looking for bcs since v0.5, only bincode which it should have already. |
@StuartHarris thanks for looking at this. I wasn't able to get to it yesterday either 😄 I also realize it's hard to diagnose this issue from a distance. I did have the But I'll work from the understanding that we shouldn't need any |
@StuartHarris sorry it took so long to get back to this. Removing all gradle references to the I had some stale Closing now, thanks for the help! |
This is the first time I've tried building a signed Android AAB since I updated from
crux_core
0.4.0 to 0.6.0, and it seems like something broke in the typegen. I'm no longer able to build signed release AABs, although debug builds still work as expected.I'm getting this error in the
:app:mergeDexRelease
task, even after cleaning the project (removing the build directories in question):I've never seen something like this before, and I'm not sure what to make of it. I do see entries in both of these places, but it looks like this is only failing on
ArrayLen
because it's the first one—every type is defined in both of these places. Any ideas what might be causing this?The text was updated successfully, but these errors were encountered: