This is a Kotlin Multiplatform project targeting iOS.
-
/shared
is for the code that will be shared between all targets in the project. The most important subfolder iscommonMain
. If preferred, you can add code to the platform-specific folders here too. -
/iosApp
contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
Learn more about Kotlin Multiplatform…
val api = LemonSqueezy(token = "YOUR_TOKEN")
val response = api.activeLicense("YOUR_LICENSE_KEY", "YOUR_INSTANCE_NAME")