Closed BarredEwe closed 7 months ago
Xcode 15.3 contains an error when launching the plugin: Plug-in ended with uncaught signal: 5) https://github.com/BarredEwe/Prefire/issues/41
Plug-in ended with uncaught signal: 5)
The error occurs when using API: String(contentsOf: file URL, encoding: .utf 8). Solved by replacing the API with: String(contentsOfFile: file URL.path).
String(contentsOf: file URL, encoding: .utf 8)
String(contentsOfFile: file URL.path)
Short description 📝
Xcode 15.3 contains an error when launching the plugin:
Plug-in ended with uncaught signal: 5)
https://github.com/BarredEwe/Prefire/issues/41Solution 📦
The error occurs when using API:
String(contentsOf: file URL, encoding: .utf 8)
. Solved by replacing the API with:String(contentsOfFile: file URL.path)
.