Hi there,
Is anyone using the Dev-ios / ForemWebView-iOS repo? Everything works for me except uploading a cover image, at which point it crashes.
This is the process I go through to get setup:
- Clone DEV-iOS
- Run ./carthage.sh update --no-use-binaries --platform iOS --cache-builds
- Let it fail on the time out
- Open ForemWebView from the Checkouts folder in XCode
- Let it resolve the dependencies on its own successfully
- Run CMD+b to build
- Let it build successfully then quit Xcode
- Run ./carthage.sh update --no-use-binaries --platform iOS --cache-builds again
- Open up the project fully in XCode and run in a simulator to test
Here is the error I get when the app crashes (YPImagePicker at the end):
import class Foundation.Bundle
private class BundleFinder {}
extension Foundation.Bundle {
/// Returns the resource bundle associated with the current Swift module.
static var module: Bundle = {
let bundleName = “YPImagePicker_YPImagePicker”
let candidates = [
// Bundle should be present here when the package is linked into an App.
Bundle.main.resourceURL,
// Bundle should be present here when the package is linked into a framework.
Bundle(for: BundleFinder.self).resourceURL,
// For command-line tools.
Bundle.main.bundleURL,
]
for candidate in candidates {
let bundlePath = candidate?.appendingPathComponent(bundleName + “.bundle”)
if let bundle = bundlePath.flatMap(Bundle.init(url:)) {
return bundle
}
}
fatalError(“unable to find bundle named YPImagePicker_YPImagePicker”)
}()
}
I am using Xcode 12.0 - any help appreciated :D
Top comments (3)
Hey @lee , we had a contributor submit a PR over the weekend to migrate the DEV iOS app to SPM. I wanted to check back here to give you a heads up so you can give it another try now that the project is no longer using Carthage
What type of PR is this? (check all applicable)
Description
Migrate to Swift Package Manager from Carthage for dependencies
Related Tickets & Documents
Issue#241
Mobile & Desktop Screenshots/Recordings (if there are UI changes)
N/A
Added to documentation?
What gif best describes this PR or how it makes you feel?
Hi mate! This worked a treat 😎😎😎😎😎😎😎😎😎
Wow! great!!!! Thanks @fdoxyz 😎😎😎 and Ceri-anne 🤩