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
The newly added dynamic target in the CordovaLib project does not work with a pure Swift project.
Problem
The problem is that Swift requires a module map to be defined and the dynamic targets to define modules. The newly added dynamic target in CordovaLib is missing the required flag Enable Modules and hence there's no module map generated for the library.
What is expected to happen?
Enable Modules should be enabled and module map file should be generated.
What does actually happen?
Enable Modules is not enabled and module map file is not generated.
Information
An easy way to reproduce is to try to pull in the CordovaLib dynamic target into another dynamic target which is then pulled into a pure Swift app.
Environment, Platform, Device
iOS
Swift
Version information
Cordova iOS 5.0.0
Xcode 10
Checklist
I searched for existing GitHub issues
I updated all Cordova tooling to most recent version
I included all the necessary information above
The text was updated successfully, but these errors were encountered:
Bug Report
The newly added dynamic target in the
CordovaLib
project does not work with a pureSwift
project.Problem
The problem is that
Swift
requires a module map to be defined and the dynamic targets to define modules. The newly added dynamic target inCordovaLib
is missing the required flagEnable Modules
and hence there's no module map generated for the library.What is expected to happen?
Enable Modules
should be enabled and module map file should be generated.What does actually happen?
Enable Modules
is not enabled and module map file is not generated.Information
An easy way to reproduce is to try to pull in the
CordovaLib
dynamic target into another dynamic target which is then pulled into a pureSwift
app.Environment, Platform, Device
Version information
Checklist
The text was updated successfully, but these errors were encountered: