kmm-integration-sample icon indicating copy to clipboard operation
kmm-integration-sample copied to clipboard

Results 14 kmm-integration-sample issues
Sort by recently updated
recently updated
newest added

fix: java.lang.Error instead of LoginDataValidator.Result.Error

#8 for failing XCode build https://github.com/Kotlin/kmm-integration-sample/issues/8

Hi, This may help some folks bcz I'd struggle to solve a couple of problems while compiling/running the project in iOS. Please check: 1. Verify JDK version and update gradle...

Following the documentation from [here](https://kotlinlang.org/docs/kmm-integrate-in-existing-app.html#connect-the-framework-to-your-ios-project) I am getting an error on linkDebugFramewokrIosX64 task. The log is: ---------------------------- > Task :shared:linkDebugFrameworkIosX64 FAILED e: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld invocation reported errors Please try to disable...

Currently the master branch is the default, so when folks search for this repo, they don't see any KMM code. Of course the README explains to look in the final...

Hey, i'm getting started with KMM. I tried different approaches in creating a new KMM Project but i'm unable to run any of it. My last approach is with the...

I am importing this project into Android Studio. Gradle build fails with this error: > A problem occurred configuring root project 'Simple Login'. > Could not resolve all artifacts for...

ContentView.swift: > func login(username: String, password: String) { if let result = loginRepository.login(username: username, password: password) as? ResultSuccess { print("Successful login. Welcome, \(result.data.displayName)") } else { print("Error while logging in")...

https://github.com/Kotlin/kmm-integration-sample/blob/d4cd7a146f870555e2dd4c5c748f6e467a70f8fe/app/src/main/java/com/jetbrains/simplelogin/androidapp/ui/login/LoginActivity.kt#L83 If you go into the password field and hit done with keyboard you are logged in... Possible solution: ``` setOnEditorActionListener { _, actionId, _ -> when { actionId ==...