Kotlin Native: Why are `implementation` dependenci...
# multiplatform
e
Kotlin Native: Why are 
implementation
 dependencies specified in submodules are exported when 
transitiveExport = true
? Shouldn’t it only export dependencies marked with 
api
?
g
But why do you set transitiveExport? It's override implementation behavior
e
Because if the library1 i am using is dependent on library2, i won't be able to use the methods of library2 unless i set transitiveExport to true
c
That's exactly what
api
is for, isn't it?
e
Use from iOS (kotlin native)