-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage within multiplatform project fails: duplicate library name #671
Comments
You definitely don't need to define platform specific dependencies like The following should work:
|
Ah, I see, thanks for responding so quickly! The description in the documentation is different from what you're describing here, though. |
Let's keep this issue open until I update the Readme. |
I've been working on adding reaktive to a Kotlin multiplatform project. I've therefore followed the provided documentation file within the project's doc folder, which unfortunately did not work. I've therefore tried to apply suggestions provided my IntelliJ, leading to another issue complaining about a duplicate library name (
duplicate library name: com.badoo.reaktive:reaktive
).This seems to make sense at first glance since I'm using platform-specific implementations for iOS (while deliberately ignoring Android for now). But whenever I erase the dependencies providing platform-specific implementations for iOS, reaktive cannot be exported using the
export
statement, since reaktive is not part of the platform-specificdependencies
.Here's my build.gradle.kts:
Can you guys provide any help on what I'm doing wrong here? Is the documentation outdated?
The text was updated successfully, but these errors were encountered: