iamthevoid
06/25/2021, 10:47 AMunresolved reference
from buildSrc sources).
I miss something or AppCode doesn’t recognize buildSrc sources?akapanina
06/25/2021, 10:52 AMiamthevoid
06/25/2021, 11:04 AMminSdk (etc) not specified
and these dependencies was declared inside buildSrc. But problem was that gradle script not executed correctly, because of platform
implementationplatform
-type dependencyVyacheslav Karpukhin [JB]
06/25/2021, 11:51 AMplatform()
is located?iamthevoid
06/25/2021, 11:56 AMandroid:app / build.gradle.kts
2. I removed kotlin("android")
and add kotlin("multiplatform")
3. I move my dependencies
block inside kotlin { sourceSets { androidMain.dependencies { … } } }
top-level android dependencies
issues?Vyacheslav Karpukhin [JB]
06/25/2021, 1:09 PMplatform
support for the dependencies in kotlin-multiplatform
plugin. Could you report this to https://youtrack.jetbrains.com/issues/KMA, please?
Regarding the submodules: they also need to be converted to kotlin-multiplatform
, otherwise they won't be imported correctly by the IDE, and the code which uses these dependencies won't resolve.iamthevoid
06/25/2021, 1:19 PMRegarding the submodules: they also need to be converted toIs it always be like that? Or it can be changed in future?kotlin-multiplatform
Vyacheslav Karpukhin [JB]
06/25/2021, 1:25 PMiamthevoid
06/25/2021, 2:13 PMSourabh Rawat
06/27/2021, 12:47 PM