Skip to content

CyberFlameGO/sentry-kotlin-multiplatform

 
 

Repository files navigation


Experimental Sentry SDK for Kotlin Multiplatform

This project is an experimental SDK for Kotlin Multiplatform. It was built during Hackweek and is not finished. This SDK is a wrapper around different platforms as JVM, Android, Cocoa, and JavaScript, that can be used on Kotlin Multiplatform.

Installation and Usage

Clone or fork this repo. This SDK is under construction and therefore we only publish it to maven local:

./gradlew publishToMavenLocal

Add this to your Gradle

repositories {
  // Because we only publish to maven local
  mavenLocal()
}

dependencies {
  implementation("io.sentry.kotlin.multiplatform:sentry-kotlin-multiplatform:0.0.1")
}

Cocoa

For iOS, iPadOS, MacOS, tvOS or watchOS we use CocoaPods to include sentry-cocoa into this SDK. The infrastracture of Kotlin can't resolve CocoaPods yet. Hence, when publishing and including this SDK via Maven we a different solution to package Sentry into our apps.

One way to achieve this is to include the Kotlin Multiplatform library via CocoaPods into your Xcode project and also add Sentry to the Podfile. This way CocoaPods and Xcode take care of packaging Sentry into your app. First, you need to install CocoaPods and the Gradle Plugin. Next integrate the Kotlin Gradle project as a CocoaPods dependency. Finally, also add Sentry as a CocoaPods dependency. Your Podfile should look something like this:

target 'iosApp' do
  use_frameworks!
  platform :ios, '13.5'
  # Pods for iosApp
  pod 'kotlin_library', :path => '../kotlin-library'
  pod 'Sentry', '~> 5.2.0' # Same version as in this SDK
end

Please make sure to specify the same version as used in this SDK. Otherwise weird bugs could happen.

Android

The initialization of the Android SDK needs a context. ContextProvider takes care of passing resolving the context. Add the following to your Application class.

class YourApplication : Application() {

    override fun onCreate() {
        super.onCreate()

        ContextProvider.init { this }
    }
}

JavaScript

Not implemented yet. Help appreciated.

About

Experimental not finished SDK for Kotlin Multiplatform

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • Kotlin 79.2%
  • Ruby 20.8%