Post

Replies

Boosts

Views

Activity

Reply to Xcode 12.0.1 "No such module"
Just resolved it on Xcode 13.1 My PodFile had to be like below in order to get it working. workspace '<NAME>' platform :ios, '15.1' target '<NAME>' do  use_frameworks!     pod 'AppAuth'     target '<NAME>Tests' do   inherit! :search_paths  end     target '<NAME>UITests' do   #inherit :search_paths  end    end```
Nov ’21