0Pricing
Kotlin Multiplatform Academy · Lezione

Risolvere i problemi "Shared Code Not Found"

Risolvere i problemi di collegamento più comuni al primo avvio

Risolvere i problemi "Shared Code Not Found" è una lezione Kotlin Multiplatform Academy gratuita su CoddyKit. Questa è la lezione 4 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Kotlin Multiplatform Academy, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Kotlin Multiplatform Academy include 4 lezioni in totale.

Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.

The Classic First-Run Wall

Almost everyone hits it once: iOS builds but Swift cannot find your shared API. Let's debug shared code not found calmly. 🛠️

Confirm the Framework Built

First, run the Gradle framework task directly. If it fails outside Xcode, the framework never existed and Swift had nothing to link.

./gradlew :shared:embedAndSignAppleFrameworkForXcode

Check the import Name

Swift must import the exact baseName set in build.gradle.kts. A mismatched name is the most common no-such-module error.

import shared

Verify the Build Phase Order

The Gradle build phase must run before Compile Sources. If it sits too low in the list, Swift compiles before the framework exists.

Framework Search Paths

Xcode needs to know where the framework lives. Check that Framework Search Paths points at the Gradle output folder for your target.

Open the Right File

Using CocoaPods but opened the .xcodeproj? Pods are missing. Close it and open the .xcworkspace instead.

Wrong Architecture Linked

An arm64 framework will not link into an x86 simulator. Make sure the framework was built for the same architecture as your run target.

Read the Build Log Top-Down

Expand the failing step in the build log and find the first error. A later linker complaint is often just a symptom of an earlier failure.

Clean Out Stale Output

Old artifacts can confuse the linker. A clean Gradle build plus an Xcode clean often clears a stubborn not-found error.

./gradlew clean

Public API Visibility

Only public Kotlin declarations cross to Swift. If a class is internal, Swift will not see it no matter how the framework links.

Most Fixes Are Wiring, Not Logic

These errors look scary but are almost always config: name, path, order, or architecture. Check those four and you'll be unblocked. ✨

Quick Check

Let's confirm a frequent cause of this error.

Recap

You learned to debug not-found errors by checking the framework built, the import name, build-phase order, search paths, and architecture. Most fixes are config, not code. 🎉

Domande Frequenti

La lezione «Risolvere i problemi "Shared Code Not Found"» è gratuita?

Sì — il testo completo di «Risolvere i problemi "Shared Code Not Found"» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Kotlin Multiplatform Academy, passa a CoddyKit PRO. Il corso Kotlin Multiplatform Academy include 4 lezioni in totale.

Cosa imparerò in «Risolvere i problemi "Shared Code Not Found"»?

Risolvere i problemi di collegamento più comuni al primo avvio Eserciti Kotlin Multiplatform Academy con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.

Ho bisogno di esperienza per iniziare Kotlin Multiplatform Academy?

Non è richiesta alcuna esperienza precedente. Kotlin Multiplatform Academy su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 4 di 4.

Quanto tempo richiede la lezione «Risolvere i problemi "Shared Code Not Found"»?

La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.

Posso scrivere ed eseguire codice in questa lezione Kotlin Multiplatform Academy?

Sì. Ogni lezione Kotlin Multiplatform Academy include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.

Tutte le lezioni di questo corso

  1. Eseguire l'app Android da Studio
  2. Aprire ed eseguire l'app iOS in Xcode
  3. Come viene creato il framework iOS
  4. Risolvere i problemi "Shared Code Not Found"
← Torna a Kotlin Multiplatform Academy