-
Notifications
You must be signed in to change notification settings - Fork 626
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 Gradle Plugin 3.5.0 Compatibility #53
Comments
I have another issue linked to the new Android Gradle Plugin :
This bug is only present in the 3.5.0. |
Thanks for your issue, I will take time to look at this. |
I am also find this bug about classpath 'com.android.tools.build:gradle:3.5.0' |
Also got this issue. Downgrade for 3.4.2 works until this is fixed. |
I adapted 3.5.0 in fat-aar 1.2.6。 |
Great, both issues have been fixed. Thank you for your time ! |
This issue has resurfaced with gradle |
Yes |
Hi,
The latest Android Gradle plugin breaks the fat-aar plugin :
Cannot expand ZIP '****\intermediates\compile_only_not_namespaced_r_class_jar\release\generateReleaseRFile\R.jar' as it does not exist.
Path of the R.jar file with 3.4.2 :
intermediates\compile_only_not_namespaced_r_class_jar\release\generateReleaseRFile\R.jar
Path of the R.jar file with 3.5.0 :
intermediates\compile_only_not_namespaced_r_class_jar\release\R.jar
One step is really important : clean before trying to reproduce this error. Without a clean, old generated files are still present and are used by the plugin.
I think the fix should be made here by adding another case without the last part of the path (
/generate${mVariant.name.capitalize()}RFile
) :fat-aar-android/source/src/main/groovy/com/kezong/fataar/VersionAdapter.groovy
Line 36 in 22e2a04
I tried to build by manually puting the R.jar file in the old path and it seems to work, so it may be the only broken thing.
The text was updated successfully, but these errors were encountered: