Kotlin Help

CocoaPods overview and setup

Kotlin/Native provides integration with the CocoaPods dependency manager. You can add dependencies on Pod libraries as well as use a multiplatform project with native targets as a CocoaPods dependency.

You can manage Pod dependencies directly in IntelliJ IDEA or Android Studio and enjoy all the additional features such as code highlighting and completion. You can build the whole Kotlin project with Gradle and not ever have to switch to Xcode.

You only need Xcode if you want to change Swift/Objective-C code or run your application on an Apple simulator or device. To work correctly with Xcode, you should update your Podfile.

Depending on your project and purposes, you can add dependencies between a Kotlin project and a Pod library as well as a Kotlin Gradle project and an Xcode project.

Set up an environment to work with CocoaPods

Install the CocoaPods dependency manager using the installation tool of your choice:

  1. Install Ruby version manager in case you don't have it yet.

  2. Install Ruby. You can choose a specific version:

    rvm install ruby 3.0.0
  3. Install CocoaPods:

    sudo gem install -n /usr/local/bin cocoapods
  1. Install rbenv from GitHub in case you don't have it yet.

  2. Install Ruby. You can choose a specific version:

    rbenv install 3.0.0
  3. Set the Ruby version as local for a particular directory or global for the whole machine:

    rbenv global 3.0.0
  4. Install CocoaPods:

    sudo gem install -n /usr/local/bin cocoapods

You can install the CocoaPods dependency manager with the default Ruby that should be available on macOS:

sudo gem install cocoapods
  1. Install Homebrew in case you don't have it yet.

  2. Install CocoaPods:

    brew install cocoapods

If you encounter problems during the installation, check the Possible issues and solutions section.

Create a project

When your environment is set up, you can create a new Kotlin Multiplatform project. For that, use the Kotlin Multiplatform web wizard or the Kotlin Multiplatform plugin for Android Studio.

Using web wizard

To create a project using the web wizard and configure the CocoaPods integration:

  1. Open the Kotlin Multiplatform wizard and select target platforms for your project.

  2. Click the Download button and unpack the downloaded archive.

  3. In Android Studio, select File | Open in the menu.

  4. Navigate to the unpacked project folder and then click Open.

  5. Add the Kotlin CocoaPods Gradle plugin to the version catalog. In the gradle/libs.versions.toml file, add the following declaration to the [plugins] block:

    kotlinCocoapods = { id = "org.jetbrains.kotlin.native.cocoapods", version.ref = "kotlin" }
  6. Navigate to the root build.gradle.kts file of your project and add the following alias to the plugins {} block:

    alias(libs.plugins.kotlinCocoapods) apply false
  7. Open the module where you want to integrate CocoaPods, for example the composeApp module, and add the following alias to the plugins {} block:

    alias(libs.plugins.kotlinCocoapods)

Now you are ready to use CocoaPods in your Kotlin Multiplatform project.

In Android Studio

To create a project in Android Studio with the CocoaPods integration:

  1. Install the Kotlin Multiplatform plugin to Android Studio.

  2. In Android Studio, select File | New | New Project in the menu.

  3. In the list of project templates, select Kotlin Multiplatform App and then click Next.

  4. Name your application and click Next.

  5. Choose CocoaPods Dependency Manager as the iOS framework distribution option.

    Android Studio wizard with the Kotlin Multiplatform plugin
  6. Keep all other options default. Click Finish.

    The plugin will automatically generate the project with the CocoaPods integration set up.

Configure existing project

If you already have a project, you can add and configure the Kotlin CocoaPods Gradle plugin manually:

  1. In build.gradle(.kts) of your project, apply the CocoaPods plugin as well as the Kotlin Multiplatform plugin:

    plugins { kotlin("multiplatform") version "2.0.21" kotlin("native.cocoapods") version "2.0.21" }
  2. Configure version, summary, homepage, and baseName of the Podspec file in the cocoapods block:

    plugins { kotlin("multiplatform") version "2.0.21" kotlin("native.cocoapods") version "2.0.21" } kotlin { cocoapods { // Required properties // Specify the required Pod version here. Otherwise, the Gradle project version is used. version = "1.0" summary = "Some description for a Kotlin/Native module" homepage = "Link to a Kotlin/Native module homepage" // Optional properties // Configure the Pod name here instead of changing the Gradle project name name = "MyCocoaPod" framework { // Required properties // Framework name configuration. Use this property instead of deprecated 'frameworkName' baseName = "MyFramework" // Optional properties // Specify the framework linking type. It's dynamic by default. isStatic = false // Dependency export export(project(":anotherKMMModule")) transitiveExport = false // This is default. } // Maps custom Xcode configuration to NativeBuildType xcodeConfigurationToNativeBuildType["CUSTOM_DEBUG"] = NativeBuildType.DEBUG xcodeConfigurationToNativeBuildType["CUSTOM_RELEASE"] = NativeBuildType.RELEASE } }
  3. Run Reload All Gradle Projects in IntelliJ IDEA (or Sync Project with Gradle Files in Android Studio) to re-import the project.

  4. Generate the Gradle wrapper to avoid compatibility issues during an Xcode build.

When applied, the CocoaPods plugin does the following:

  • Adds both debug and release frameworks as output binaries for all macOS, iOS, tvOS, and watchOS targets.

  • Creates a podspec task which generates a Podspec file for the project.

The Podspec file includes a path to an output framework and script phases that automate building this framework during the build process of an Xcode project.

Update Podfile for Xcode

If you want to import your Kotlin project to an Xcode project:

  1. Make changes in your Podfile:

    • If your project has any Git, HTTP, or custom Podspec repository dependencies, you should specify the path to the Podspec in the Podfile.

      For example, if you add a dependency on podspecWithFilesExample, declare the path to the Podspec in the Podfile:

      target 'ios-app' do # ... other dependencies ... pod 'podspecWithFilesExample', :path => 'cocoapods/externalSources/url/podspecWithFilesExample' end

      The :path should contain the filepath to the Pod.

    • When you add a library from the custom Podspec repository, you should also specify the location of specs at the beginning of your Podfile:

      source 'https://github.com/Kotlin/kotlin-cocoapods-spec.git' target 'kotlin-cocoapods-xcproj' do # ... other dependencies ... pod 'example' end
  2. Run pod install in you project directory.

    When you run pod install for the first time, it creates the .xcworkspace file. This file includes your original .xcodeproj and the CocoaPods project.

  3. Close your .xcodeproj and open the new .xcworkspace file instead. This way you avoid issues with project dependencies.

  4. Run Reload All Gradle Projects in IntelliJ IDEA (or Sync Project with Gradle Files in Android Studio) to re-import the project.

If you don't make these changes in the Podfile, the podInstall task will fail, and the CocoaPods plugin will show an error message in the log.

Possible issues and solutions

CocoaPods installation

Ruby installation

CocoaPods is built with Ruby, and you can install it with the default Ruby that should be available on macOS. Ruby 1.9 or later has a built-in RubyGems package management framework that helps you install the CocoaPods dependency manager.

If you're experiencing problems installing CocoaPods and getting it to work, follow this guide to install Ruby or refer to the RubyGems website to install the framework.

Version compatibility

We recommend using the latest Kotlin version. If your current version is earlier than 1.7.0, you'll need to additionally install the cocoapods-generate plugin.

However, cocoapods-generate is not compatible with Ruby 3.0.0 or later. In this case, downgrade Ruby or upgrade Kotlin to 1.7.0 or later.

Build errors when using Xcode

Some variations of the CocoaPods installation can lead to build errors in Xcode. Generally, the Kotlin Gradle plugin discovers the pod executable in PATH, but this may be inconsistent depending on your environment.

To set the CocoaPods installation path explicitly, you can add it to the local.properties file of your project manually or using a shell command:

  • If using a code editor, add the following line to the local.properties file:

    kotlin.apple.cocoapods.bin=/Users/Jane.Doe/.rbenv/shims/pod
  • If using a terminal, run the following command:

    echo -e "kotlin.apple.cocoapods.bin=$(which pod)" >> local.properties

Module not found

You may encounter a module 'SomeSDK' not found error that is connected with the C-interop issue. Try these workarounds to avoid this error:

Specify the framework name

  1. Look through the downloaded Pod directory [shared_module_name]/build/cocoapods/synthetic/IOS/Pods/... for the module.modulemap file.

  2. Check the framework name inside the module, for example AppsFlyerLib {}. If the framework name doesn't match the Pod name, specify it explicitly:

    pod("FirebaseAuth") { moduleName = "AppsFlyerLib" }

Specify headers

If the Pod doesn't contain a .modulemap file, like the pod("NearbyMessages"), specify the main header explicitly:

pod("NearbyMessages") { version = "1.1.1" headers = "GNSMessages.h" }

Check the CocoaPods documentation for more information. If nothing works, and you still encounter this error, report an issue in YouTrack.

Rsync error

You might encounter the rsync error: some files could not be transferred error. It's a known issue that occurs if the application target in Xcode has sandboxing of the user scripts enabled.

To solve this issue:

  1. Disable sandboxing of user scripts in the application target:

    Disable sandboxing CocoaPods
  2. Stop the Gradle daemon process that might have been sandboxed:

    ./gradlew --stop
Last modified: 17 October 2024