Skip to content

Commit

Permalink
Fix android example test exclusive flag (#4449)
Browse files Browse the repository at this point in the history
The earlier PR defined `ExampleCrossModuleAndroid` but didn't use it

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
lihaoyi and autofix-ci[bot] authored Feb 1, 2025
1 parent 185e28e commit 9c0a9af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions example/package.mill
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ object `package` extends RootModule with Module {
.collect { case m: ExampleCrossModule => m }

object android extends Module {
object javalib extends Cross[ExampleCrossModuleJava](build.listIn(millSourcePath / "javalib"))
object javalib
extends Cross[ExampleCrossModuleAndroid](build.listIn(millSourcePath / "javalib"))
object kotlinlib
extends Cross[ExampleCrossModuleJava](build.listIn(millSourcePath / "kotlinlib"))
extends Cross[ExampleCrossModuleAndroid](build.listIn(millSourcePath / "kotlinlib"))
}
object javalib extends Module {

Expand Down

0 comments on commit 9c0a9af

Please sign in to comment.