```dependencies { add(PLUGIN_CLASSPATH_CONFIGU...
# kotlin-native
z
Copy code
dependencies {
    add(PLUGIN_CLASSPATH_CONFIGURATION_NAME, Dependencies.xxxx)
}
Does adding this plugin to k/n take effect during k/n compilation(for iOS)? It looks like this plugin doesn’t work.
j
The native compiler has its own classpath and requires that plugins be compiled specifically to target native (reusing one compatible with common/JS/JVM/Android will not work)
z
@jw Thx, I saw you’ve been using Compose on iOS for months, is compile it manually useful to make Compose Compiler work on iOS? Compose does not currently support iOS but I want to use it.
j
You have to compile the compiler and runtime yourself. The compiler is a JVM library and the runtime you have to compile for the desired native targets.
K 1