I started a project as a multiplatform library wi...
# multiplatform
j
I started a project as a multiplatform library with android and ios client in different folders but publishing new versions is quite cumbersome and I now would like to move to the “centralized” file architecture, like the one created by the kmm module. I tried to replicate how it’s done from a freshly created project but I keep getting this error
Plugin [id: 'com.android.application'] was not found in any of the following sources:
and nothing after. So gradle doesn’t understand that the
buildscript
block is now define in a different gradle file. I did include
implementation(project(":shared"))
in the gradle file at the android app level but still the same issue. Are there any non-gradle configuration changes to do I am not aware of?
a
I find whole setup rather confusing. I'd try to paste a cutdown version of your build.gradle file in this thread.