on Amper `0.3.1` my project compiles fine without ...
# amper
m
on Amper
0.3.1
my project compiles fine without include the modules on
settings.gradle.kts
, but after update it to
0.5.0
the gradle modules can't be found, to solve it I had to include the modules:
Copy code
include(":konnection")
include(":konnection-swift")
1
j
Copy code
AMPER-393 Amper modules are no longer automatically discovered by searching the whole file system hierarchy.
The documentation has been updated accordingly.

In Gradle-based Amper projects, modules with a module.yaml file now need to be listed alongside other Gradle modules in settings.gradle(.kts)
m
oh 🤦, missed that 😅
j
I had too but ran in to same issue with 0.5.0