ios - Adding RealmSwift as a subproject: Missing required modules: 'Realm.Private', 'Realm' -
so wanted link realmswift in own framework , these steps took:
add
realmswiftsubproject
link framework:

add dependency

import
realmswiftswift file:
and got error: missing required modules: 'realm.private', 'realm'. how can solve issue? thanks!
you'll need add /path/to/realmswift.framework/frameworks “framework search paths” section in build settings
where /path/to/realmswift.framework location of framework.
this because realmswift.framework depends on realm.framework (where realm , realm.private modules defined), vendored in frameworks directory.
Comments
Post a Comment