-
Notifications
You must be signed in to change notification settings - Fork 395
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
Fixing #529 #565
Fixing #529 #565
Conversation
…d of appending a string to the created dependency
c676315
to
d9091a5
Compare
So the build is failing because Travis doesn't have API level 21 for the tic tac toe example. Everything else looks good though. |
// Add the classes to the classpath | ||
final Dependency dependency = createSystemScopeDependency( artifact, classesJar, "extracted" ); | ||
|
||
// Modify the classpath to use an extracted dex file. This will overwrite |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not using an extracted dex file though is it?
It's using the classes.jar from an unpacked aar lib.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I'm used to the classes.dex in an apk. I'll fix the doc.
Works for our use cases. I'll close the other pull request if this is merged. Thanks |
Fixing #529 Thanks @secondsun This fixes a really annoying I have been having with IntelliJ which was being caused by the _extracted suffix.
NB this PR is required in order for the release-plugin to work also. |
This fixes the issues #530 is trying to fix but without breaking the provided jar workaround for IDEs