Hello ! I want to create a public SDK wrapping a p...
# android
n
Hello ! I want to create a public SDK wrapping a private library. Is it possible ? 😅
Copy code
PrivateLib (with external deps like "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.2", etc)
PublicLib
    - implementation(project(':PrivateLib'))
I encounter error “Could not find ProjectPrivateLib1.0". How to embed
PrivateLib
in
PublicLib
? 🙂 I include
PublicLib
doing
implementation("group:PublicLib:0.1.0")
using mavenLocal repository for testing.
not kotlin but kotlin colored 2
not android 3
e
1. Not a Kotlin issue, see the channel topic and the whole community guidelines 2. No it's not possible. https://issuetracker.google.com/issues/256734082
n
Thank you for your reply and sorry for the misposting 😞