Skip to content

Release v0.8.18

Choose a tag to compare

@github-actions github-actions released this 14 Jan 19:55
· 9 commits to main since this release

Mobile SDK Release v0.8.18

iOS (Swift Package Manager)

Add to your Package.swift or Xcode project:

.package(url: "https://github.com/cooklang/cooklang-import.git", from: "v0.8.18")

Downloads:

  • CooklangImportFFI.xcframework.zip - XCFramework binary (used by Package.swift)
  • CooklangImport-ios.zip - Full package with Swift sources for manual integration

Android (GitHub Packages Maven)

Add to your settings.gradle.kts:

dependencyResolutionManagement {
    repositories {
        maven {
            url = uri("https://maven.pkg.github.com/cooklang/cooklang-import")
            credentials {
                username = System.getenv("GITHUB_ACTOR")
                password = System.getenv("GITHUB_TOKEN")
            }
        }
    }
}

Add to your build.gradle.kts:

implementation("org.cooklang:cooklang-import:v0.8.18")

Or download cooklang-import-android.zip which contains:

  • cooklang-import-android/ - Android library module
  • jniLibs/ - Native libraries for all architectures
  • kotlin/ - Kotlin bindings source files

Supported Architectures

iOS:

  • arm64 (devices)
  • arm64 (simulator, Apple Silicon)

Android:

  • arm64-v8a
  • armeabi-v7a
  • x86_64

See the README for integration instructions.

Full Changelog: 0.8.17...v0.8.18