You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If Path.swift is added as a dependency using CocoaPods, Path_swift.framework ends up getting generated, not Path.framework. This leads to the user needing to do import Path_swift instead of import Path.
module_name needs to be specified in the Podspec, as it is done in SQLite.swift here.
The text was updated successfully, but these errors were encountered:
If Path.swift is added as a dependency using CocoaPods,
Path_swift.framework
ends up getting generated, notPath.framework
. This leads to the user needing to doimport Path_swift
instead ofimport Path
.module_name
needs to be specified in the Podspec, as it is done in SQLite.swift here.The text was updated successfully, but these errors were encountered: