what type of framework for iOS is generated ? stat...
# multiplatform
o
what type of framework for iOS is generated ? static or dynamic ?
b
dynamic
o
thanks for your answer
is it possible to change it to static ?
o
yes, use
-Xstatic-framework
in CLI or
Copy code
framework("custom", listOf(RELEASE)) {
                isStatic = true
            }
in Gradle
👍 5
o
@olonho Thanks a lot