You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now okbuck depends on bundleRelease task, which only contained by Android library module, so invoke bundleRelease won't make java module depended by application module only built, and error will be fired like below:
* What went wrong:
Execution failed for task ':okbuck'.
> /Users/piasy/src/AndroidTDDBootStrap/EasyFlow/build/libs/EasyFlow.jar (No such file or directory)
Solution is: make okbuck depends on Android library module's bundleRelease task, and java module's jar task.
The text was updated successfully, but these errors were encountered:
…tream to master
* commit 'f6cf823f3d9035887cd20bb23f58711e26fe76da': (27 commits)
Further cleanup of unused project types from our initial implementation
Remove unused kotlin + java test clases
Skip OkBuck if we just want to run buck help. (uber#470)
Set WORKING_DIR to the location of the buck wrapper. (uber#471)
Publish v0.22.4
Add logic to buckw to update buck and build it if needed (uber#469)
Use relative path for merged proguard file
Publish v0.22.3
Better error message
Allow transform config to accept project dependencies (uber#466)
Remove unused parameters and clean up some code. (uber#439)
Publish v0.22.2
Do not generate default project ignores
Setup Kotlin home whenever the kotlin gradle plugin is on the classpath. (uber#464)
Update several dependencies to latest (uber#462)
Remove kotlin-dev repo as 1.1.3 is now released
Add support for mixed kotlin and java in regular kotlin modules. (uber#461)
Publish v0.22.1
Fix rule type propagation
Publish v0.22.0
...
Now
okbuck
depends onbundleRelease
task, which only contained by Android library module, so invokebundleRelease
won't make java module depended by application module only built, and error will be fired like below:Solution is: make
okbuck
depends on Android library module'sbundleRelease
task, and java module'sjar
task.The text was updated successfully, but these errors were encountered: