touchlab / KaMPKit

KaMP Kit by Touchlab. A collection of code & tools designed to get your mobile team started quickly w/Kotlin Multiplatform
https://touchlab.co/
Apache License 2.0
2.2k stars 199 forks source link

Can't find dependencies provided via pod function #159

Closed CrispBull closed 3 years ago

CrispBull commented 3 years ago

After adding an ios framework like this

kotlin {
    ...
    cocoapodsext {
        summary = "Shared Android/iOS module for SalesRabbit mobile clients"
        homepage = "https://gitlab.com/salesrabbit/android"
        pod("AFNetworking")
    }
}

Gradle syncs successfully but I can't access the classes in this dependency anywhere my project. Any reason why this could be happening?