I created an Android project and now I want to move that project in Android studio, I successfully done that on Mac machine and working fine but when I try to execute same gradle / android studio script on Windows machine it's failing getting following exception
Execution failed for task ':compileDebugJavaWithJavac'.
> Could not expand ZIP 'C:\CodeBase\build\intermediates\exploded-aar\CheckoutAnd4.0\jars\classes.jar'.
I tried to add Jar file then also getting same exception. Gradle Script
For Jar compile fileTree(include: '*.jar', dir: 'libs')
For Aar compile(name: 'CheckoutAnd4.0', ext: 'aar')
So I want to know whether there is anything missing with Gradle script or Android project
More info -
My jar containing Aux/com class, And widows don't allows that to compile/create in build folder.