Skip to main content

I attempted the run command and the response I had was succeeded, but then nothing else happened!

I usually have this problem when a dependency is not updated.

The following steps usually works for me... note in bold are the Terminal commands such as (rm -rf Podfile.lock):

  1. Delete your Podfile.lock - using Terminal use the command rm -rf Podfile.lock
  2. Delete your Pods folder - rm -rf Pods
  3. Delete your .xcworkspace - rm -f .xcworkspace
  4. Pod install
  5. Clear your project - shift + command + k or XCode > Product > Clean Build Folder

 

Related articles

Andrew Fletcher12 Aug 2022
Using SwiftUI URLComponent to change a URL's scheme
The challenge I was facing, I had written a script to scan barcodes and use Google book API to view the contents.  However, a snippet of the JSON response { "contentVersion": "0.2.0.0.preview.0", "panelizationSummary": { "containsEpubBubbles": false, ...