hello guys  I need some help to publish my librar...
# multiplatform
m
hello guys  I need some help to publish my library in Bintray (I know I will have to change it soon), but basically I have a KMM library, where I can import the common library, but the iOS and the Android libraries I can’t:
Copy code
commonMain {
  dependencies {
    implementation "com.group:library:1.0.0"
  }
}

iosMain {
  dependencies {
    implementation "com.group:library:1.0.0"
  }
}

androidMain {
  dependencies {
    implementation "com.group:library:1.0.0"
  }
}
Attache is my publishing gradle configs…