构建最终原生二进制文件
By default, a Kotlin/Native target is compiled down to a *.klib
library artifact, which can be consumed by Kotlin/Native itself as a dependency but cannot be executed or used as a native library.
To declare final native binaries such as executables or shared libraries, use the binaries
property of a native target. This property represents a collection of native binaries built for this target in addition to the default *.klib
artifact and provides a set of methods for declaring and configuring them.
The
kotlin-multiplatform
plugin doesn’t create any production binaries by default. The only binary available by default is a debug test executable that lets you run unit tests from thetest
compilation.
Binaries produced by the Kotlin/Native compiler can include third-party code, data, or derived work. This means if you distribute a Kotlin/Native-compiled final binary, you should always include necessary license files into your binary distribution.
声明二进制文件
Use the following factory methods to declare elements of the binaries
collection.
Factory method | Binary kind | Available for |
---|---|---|
executable | Product executable | All native targets |
test | Test executable | All native targets |
sharedLib | Shared native library | All native targets, except for WebAssembly |
staticLib | Static native library | All native targets, except for WebAssembly |
framework | Objective-C framework | macOS, iOS, watchOS, and tvOS targets only |
The simplest version doesn’t require any additional parameters and creates one binary for each build type. Currently, two build types are available:
DEBUG
– produces a non-optimized binary with debug informationRELEASE
– produces an optimized binary without debug information
The following snippet creates two executable binaries, debug and release:
kotlin {
linuxX64 { // Define your target instead.
binaries {
executable {
// Binary configuration.
}
}
}
}
You can drop the lambda if there is no need for additional configuration:
binaries {
executable()
}
You can specify for which build types to create binaries. In the following example, only the debug
executable is created:
【Kotlin】
binaries {
executable(listOf(DEBUG)) {
// Binary configuration.
}
}
【Groovy】
binaries {
executable([DEBUG]) {
// Binary configuration.
}
}
You can also declare binaries with custom names:
【Kotlin】
binaries {
executable("foo", listOf(DEBUG)) {
// Binary configuration.
}
// It's possible to drop the list of build types
// (in this case, all the available build types will be used).
executable("bar") {
// Binary configuration.
}
}
【Groovy】
binaries {
executable('foo', [DEBUG]) {
// Binary configuration.
}
// It's possible to drop the list of build types
// (in this case, all the available build types will be used).
executable('bar') {
// Binary configuration.
}
}
The first argument sets a name prefix, which is the default name for the binary file. For example, for Windows the code produces the files foo.exe
and bar.exe
. You can also use the name prefix to access the binary in the build script.
访问二进制文件
You can access binaries to configure them or get their properties (for example, the path to an output file).
You can get a binary by its unique name. This name is based on the name prefix (if it is specified), build type, and binary kind following the pattern: <optional-name-prefix><build-type><binary-kind>
, for example, releaseFramework
or testDebugExecutable
.
Static and shared libraries have the suffixes static and shared respectively, for example,
fooDebugStatic
orbarReleaseShared
.【Kotlin】
// Fails if there is no such binary.
binaries["fooDebugExecutable"]
binaries.getByName("fooDebugExecutable")
// Returns null if there is no such binary.
binaries.findByName("fooDebugExecutable")
【Groovy】
// Fails if there is no such binary.
binaries['fooDebugExecutable']
binaries.fooDebugExecutable
binaries.getByName('fooDebugExecutable')
// Returns null if there is no such binary.
binaries.findByName('fooDebugExecutable')
Alternatively, you can access a binary by its name prefix and build type using typed getters.
【Kotlin】
// Fails if there is no such binary.
binaries.getExecutable("foo", DEBUG)
binaries.getExecutable(DEBUG) // Skip the first argument if the name prefix isn't set.
binaries.getExecutable("bar", "DEBUG") // You also can use a string for build type.
// Similar getters are available for other binary kinds:
// getFramework, getStaticLib and getSharedLib.
// Returns null if there is no such binary.
binaries.findExecutable("foo", DEBUG)
// Similar getters are available for other binary kinds:
// findFramework, findStaticLib and findSharedLib.
【Groovy】
// Fails if there is no such binary.
binaries.getExecutable('foo', DEBUG)
binaries.getExecutable(DEBUG) // Skip the first argument if the name prefix isn't set.
binaries.getExecutable('bar', 'DEBUG') // You also can use a string for build type.
// Similar getters are available for other binary kinds:
// getFramework, getStaticLib and getSharedLib.
// Returns null if there is no such binary.
binaries.findExecutable('foo', DEBUG)
// Similar getters are available for other binary kinds:
// findFramework, findStaticLib and findSharedLib.
将依赖项导出到二进制文件
When building an Objective-C framework or a native library (shared or static), you may need to pack not just the classes of the current project, but also the classes of its dependencies. Specify which dependencies to export to a binary using the export
method.
【Kotlin】
kotlin {
sourceSets {
macosMain.dependencies {
// Will be exported.
api(project(":dependency"))
api("org.example:exported-library:1.0")
// Will not be exported.
api("org.example:not-exported-library:1.0")
}
}
macosX64("macos").binaries {
framework {
export(project(":dependency"))
export("org.example:exported-library:1.0")
}
sharedLib {
// It's possible to export different sets of dependencies to different binaries.
export(project(':dependency'))
}
}
}
【Groovy】
kotlin {
sourceSets {
macosMain.dependencies {
// Will be exported.
api project(':dependency')
api 'org.example:exported-library:1.0'
// Will not be exported.
api 'org.example:not-exported-library:1.0'
}
}
macosX64("macos").binaries {
framework {
export project(':dependency')
export 'org.example:exported-library:1.0'
}
sharedLib {
// It's possible to export different sets of dependencies to different binaries.
export project(':dependency')
}
}
}
For example, you implement several modules in Kotlin and want to access them from Swift. Usage of several Kotlin/Native frameworks in a Swift application is limited, but you can create an umbrella framework and export all these modules to it.
You can export only api dependencies of the corresponding source set.
When you export a dependency, it includes all of its API to the framework API. The compiler adds the code from this dependency to the framework, even if you use a small fraction of it. This disables dead code elimination for the exported dependency (and for its dependencies, to some extent).
By default, export works non-transitively. This means that if you export the library foo
depending on the library bar
, only methods of foo
are added to the output framework.
You can change this behavior using the transitiveExport
option. If set to true
, the declarations of the library bar
are exported as well.
It is not recommended to use
transitiveExport
: it adds all transitive dependencies of the exported dependencies to the framework. This could increase both compilation time and binary size.In most cases, you don’t need to add all these dependencies to the framework API. Use
export
explicitly for the dependencies you need to directly access from your Swift or Objective-C code.【Kotlin】
binaries {
framework {
export(project(":dependency"))
// Export transitively.
transitiveExport = true
}
}
【Groovy】
binaries {
framework {
export project(':dependency')
// Export transitively.
transitiveExport = true
}
}
构建 universal frameworks
By default, an Objective-C framework produced by Kotlin/Native supports only one platform. However, you can merge such frameworks into a single universal (fat) binary using the lipo tool. This operation especially makes sense for 32-bit and 64-bit iOS frameworks. In this case, you can use the resulting universal framework on both 32-bit and 64-bit devices.
The fat framework must have the same base name as the initial frameworks. Otherwise, you’ll get an error.
【Kotlin】
import org.jetbrains.kotlin.gradle.tasks.FatFrameworkTask
kotlin {
// Create and configure the targets.
val ios32 = watchosArm32("watchos32")
val ios64 = watchosArm64("watchos64")
configure(listOf(watchos32, watchos64)) {
binaries.framework {
baseName = "my_framework"
}
}
// Create a task to build a fat framework.
tasks.register<FatFrameworkTask>("debugFatFramework") {
// The fat framework must have the same base name as the initial frameworks.
baseName = "my_framework"
// The default destination directory is "<build directory>/fat-framework".
destinationDir = buildDir.resolve("fat-framework/debug")
// Specify the frameworks to be merged.
from(
ios32.binaries.getFramework("DEBUG"),
ios64.binaries.getFramework("DEBUG")
)
}
}
【Groovy】
import org.jetbrains.kotlin.gradle.tasks.FatFrameworkTask
kotlin {
// Create and configure the targets.
targets {
watchosArm32("watchos32")
watchosArm64("watchos64")
configure([watchos32, watchos64]) {
binaries.framework {
baseName = "my_framework"
}
}
}
// Create a task building a fat framework.
tasks.register("debugFatFramework", FatFrameworkTask) {
// The fat framework must have the same base name as the initial frameworks.
baseName = "my_framework"
// The default destination directory is "<build directory>/fat-framework".
destinationDir = file("$buildDir/fat-framework/debug")
// Specify the frameworks to be merged.
from(
targets.ios32.binaries.getFramework("DEBUG"),
targets.ios64.binaries.getFramework("DEBUG")
)
}
}
Build XCFrameworks
All Kotlin Multiplatform projects can use XCFrameworks as an output to gather logic for all the target platforms and architectures in a single bundle. Unlike universal (fat) frameworks, you don’t need to remove all unnecessary architectures before publishing the application to the App Store.
【Kotlin】
import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFramework
plugins {
kotlin("multiplatform")
}
kotlin {
val xcf = XCFramework()
val iosTargets = listOf(iosX64(), iosArm64(), iosSimulatorArm64())
iosTargets.forEach {
it.binaries.framework {
baseName = "shared"
xcf.add(this)
}
}
}
【Groovy】
import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFrameworkConfig
plugins {
id 'org.jetbrains.kotlin.multiplatform'
}
kotlin {
def xcf = new XCFrameworkConfig(project)
def iosTargets = [iosX64(), iosArm64(), iosSimulatorArm64()]
iosTargets.forEach {
it.binaries.framework {
baseName = 'shared'
xcf.add(it)
}
}
}
When you declare XCFrameworks, Kotlin Gradle plugin will register three Gradle tasks:
assembleXCFramework
assembleDebugXCFramework
(additionally debug artifact that contains dSYMs)assembleReleaseXCFramework
If you’re using CocoaPods integration in your projects, you can build XCFrameworks with the Kotlin CocoaPods Gradle plugin. It includes the following tasks that build XCFrameworks with all the registered targets and generate podspec files:
podPublishReleaseXCFramework
, which generates a release XCFramework along with a podspec file.podPublishDebugXCFramework
, which generates a debug XCFramework along with a podspec file.podPublishXCFramework
, which generates both debug and release XCFrameworks along with a podspec file.
This can help you distribute shared parts of your project separately from mobile apps through CocoaPods. You can also use XCFrameworks for publishing to private or public podspec repositories.
Publishing Kotlin frameworks to public repositories is not recommended if those frameworks are built for different versions of Kotlin. Doing so might lead to conflicts in the end-users’ projects.
Customize the Info.plist file
When producing a framework, the Kotlin/Native compiler generates the information property list file, Info.plist
. You can customize its properties with the corresponding binary option:
Property | Binary option |
---|---|
CFBundleIdentifier | bundleId |
CFBundleShortVersionString | bundleShortVersionString |
CFBundleVersion | bundleVersion |
To enable the feature, pass the -Xbinary=$option=$value
compiler flag or set the binaryOption("option", "value")
Gradle DSL for the specific framework:
binaries {
framework {
binaryOption("bundleId", "com.example.app")
binaryOption("bundleVersion", "2")
}
}