grahamborland
09/28/2023, 11:42 AMpreBuild
works when building for Android:
> ./gradlew lib:assembleDebug --dry-run
...
:lib:preBuild SKIPPED <-- preBuild is included!
but preBuild
is not executed for native/JS builds. For example, here it jumps straight to the compile
tasks.
> ./gradlew lib:assembleSlikBinXCFramework --dry-run
...
:lib:compileKotlinIosArm64 SKIPPED
xiaobailong24
09/28/2023, 2:58 PM