"--parallel"
. And our ANT build takes less than 20 minutes without parallel building../gradlew clean
./gradlew build --parallel
--no-rebuild
, but when i run with that option it says the following:I replaced the path and the project name with generic stuff.File '/path/to/project/build/libs/project.aar' specified for property 'bundle' does not exist.
"preDexLibraries = false"
to all of my "build.gradle" files. However, i still would like to know a centralize place that i can put that entry and it affect all the other "build.gradle" files. Because having to add that to all of the "build.gradle" files is annoying and if i ever have to remove it, it will be more annoying. This did not reduce the time to what we are needing.--
You received this message because you are subscribed to the Google Groups "adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adt-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
:projectA:preDexRelease | 1m26.29s | |
:projectA:preDexDebug | 1m25.14s | |
:projectA:processDebugManifest | 18.452s | |
:projectA:processReleaseManifest | 17.705s | |
:projectA:lint | 10.699s | |
:projectA:mergeReleaseResources | 8.264s | |
:projectA:dexDebug | 7.742s | |
:projectA:dexRelease | 7.449s | |
:projectA:mergeDebugResources | 4.303s | |
:projectA:compileDebugJava | 1.672s | |
:projectA:processReleaseResources | 1.662s | |
:projectA:processDebugResources | 1.325s | |
:projectA:compileReleaseJava | 1.219s | |
:projectA:packageDebug | 1.179s | |
:projectA:packageRelease | 0.923s |
:projectA:dexDebug | 56.567s | |
:projectA:mergeDebugResources | 5.135s | |
:projectA:processDebugManifest | 3.517s | |
:projectA:compileDebugJava | 1.579s | |
:projectA:packageDebug | 1.174s | |
:projectA:processDebugResources | 0.972s | |
:projectA:processDebugJavaRes | 0.373s | UP-TO-DATE |
:projectA:prepareLibrary1UnspecifiedLibrary | 0.340s | |
:projectA:prepareLibrary2UnspecifiedLibrary | 0.218s | |
:projectA:compileDebugAidl | 0.057s | |
:projectA:compileDebugRenderscript | 0.046s | |
:projectA:prepareLibrary3UnspecifiedLibrary | 0.045s | |
:projectA:prepareLibrary4UnspecifiedLibrary | 0.043s | |
:projectA:prepareLibrary5UnspecifiedLibrary | 0.029s | |
:projectA:prepareLibrary6UnspecifiedLibrary | 0.028s |
You can try "gradle androidDep" to see the dependency tree.
If you did add the feature for it to re-use the dexed stuff, how do i enable it or am do i have a setting wrong?
ThanksRight now each project will pre-dex its dependencies on its own. This means 2 components depending on the same library will both run pre-dex on that library's classes.jar which is silly. We're looking at fixing this.
--
You received this message because you are subscribed to the Google Groups "adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adt-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adt-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.