-
Notifications
You must be signed in to change notification settings - Fork 628
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
Jar files not included in compiled aar on version 1.3.1+ #255
Comments
Is it set fataar {
/**
* If transitive is true, local jar module and remote library's dependencies will be embed.
* If transitive is false, just embed first level dependency
* Local aar project does not support transitive, always embed first level
* Default value is false
* @since 1.3.0
*/
transitive = true
} The 1.3.+ version is not compatible |
I did not have this config at all. this is how i am including the jar files, in my app folders build.grade
in my project's build.gradle i have
|
Could you please show us an example on how to use fataar {
/**
* If transitive is true, local jar module and remote library's dependencies will be embed.
* If transitive is false, just embed first level dependency
* Local aar project does not support transitive, always embed first level
* Default value is false
* @since 1.3.0
*/
transitive = true
} it seems not working for me, i am putting this code in dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
fataar{
transitive = true
}..... is this the right way to use it ? |
Describe the issue
A clear and detailed description of what the issue is.
Build Environment
Versions 1.3.1 and 1.3.3 seems to miss out bundling of the jar files into the aar.
I reverted to 1.2.19, and I can see the libs folder with my jar files inside the aar when I build the aar.
Version 1.2.19
Version 1.3.1 & 1.3.3
The text was updated successfully, but these errors were encountered: