Skip to content

Commit a5cdc98

Browse files
lihaoyiautofix-ci[bot]
authored andcommitted
Fix android example test exclusive flag (com-lihaoyi#4449)
The earlier PR defined `ExampleCrossModuleAndroid` but didn't use it --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 3a09627 commit a5cdc98

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

example/package.mill

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ object `package` extends RootModule with Module {
2626
.collect { case m: ExampleCrossModule => m }
2727

2828
object android extends Module {
29-
object javalib extends Cross[ExampleCrossModuleJava](build.listIn(millSourcePath / "javalib"))
29+
object javalib
30+
extends Cross[ExampleCrossModuleAndroid](build.listIn(millSourcePath / "javalib"))
3031
object kotlinlib
31-
extends Cross[ExampleCrossModuleJava](build.listIn(millSourcePath / "kotlinlib"))
32+
extends Cross[ExampleCrossModuleAndroid](build.listIn(millSourcePath / "kotlinlib"))
3233
}
3334
object javalib extends Module {
3435

0 commit comments

Comments
 (0)