web-dev-qa-db-fra.com

Xcode 11 Beta 5 - Échec du chargement d'un plug-in

L'ouverture d'un projet SwiftUI "Hello World" inchangé dans Xcode 11 beta 5 fonctionnant sur Catalina beta 4 génère un avertissement de boîte de dialogue "Échec du chargement d'un plug-in".

enter image description here

Quelqu'un d'autre a-t-il vécu cela ou sait-il comment le résoudre? J'ai supprimé Xcode, l'ai téléchargé à nouveau, l'ai réinstallé et je reçois toujours la même erreur.

Aucune idée de la façon de corriger autre que la suppression du module incriminé, mais cela ne peut pas être correct.

Détails de l'erreur: Détails

Loading a plug-in failed.
Domain: DVTPlugInErrorDomain
Code: 2
Failure Reason: The plug-in “com.Apple.dt.UVKit” at path “/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework” could not be loaded.  The plug-in or one of its prerequisite plug-ins may be missing or damaged.
Recovery Suggestion: The plug-in or one of its prerequisite plug-ins may be missing or damaged and may need to be reinstalled.
User Info: {
    DVTPlugInDYLDErrorMessageErrorKey = "dlopen(/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit, 0): Symbol not found: _$s2IDs12IdentifiablePTl\n  Referenced from: /Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit\n  Expected in: /usr/lib/Swift/libswiftCore.dylib\n in /Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit";
    DVTPlugInExecutablePathErrorKey = "/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit";
    DVTPlugInIdentifierErrorKey = "com.Apple.dt.UVKit";
    NSFilePath = "/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework";
}
--
The bundle “UVKit” couldn’t be loaded.
Domain: NSCocoaErrorDomain
Code: 3588
Failure Reason: The bundle couldn’t be loaded.
Recovery Suggestion: Try reinstalling the bundle.
User Info: {
    NSBundlePath = "/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework";
    NSDebugDescription = "dlopen(/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit, 265): Symbol not found: _$s2IDs12IdentifiablePTl\n  Referenced from: /Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit\n  Expected in: /usr/lib/Swift/libswiftCore.dylib\n in /Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit";
    NSFilePath = "/Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework/UVKit";
}
--
17
J. Edgell

J'ai pu faire fonctionner mon projet SwiftUI sur Catalina beta 4 avec Xcode beta 5. J'ai aussi reçu l'avertissement mentionné par OP.

Et comme mentionné dans les commentaires, le seul impact négatif que j'ai vu est l'impossibilité d'utiliser la zone de prévisualisation. A part ça, tout le reste de mon projet fonctionne bien. J'utilise plus le simulateur;)

8
MScottWaller

Le problème a disparu sur Catalina build 19A558d lors de l'installation de Xcode 11 GM Seed (build 11A419c, publié le 10 septembre 2019)

1
Manel

cela supprimera le message d'erreur mais ne ramènera pas le canevas.

basé sur: https://forums.developer.Apple.com/thread/120614

S'il vous plaît allez à: /Applications/Xcode-beta.app/Contents/PlugIns/UVKit.framework et supprimez tous les fichiers de raccourcis dans tous les dossiers de UVKit.framework (Assurez-vous de NE PAS supprimer les fichiers originaux).

0
SinaMN75