Realm-cocoa: Missing .hpp file !

Created on 16 Sep 2017  路  2Comments  路  Source: realm/realm-cocoa

Expected Results

Correct install in project

Actual Results

include "impl/primitive_list_notifier.hpp" missing !

Steps to Reproduce

install RealmSwift with cocoapod

Version of Realm and Tooling

Realm framework version: RealmSwift (2.10.1)
Realm Object Server version: N.A.
Xcode version: 8.2.1
iOS/OSX version: iOS 9.0
Dependency manager + version: cocoapods 1.3.1

Most helpful comment

It sounds like CocoaPods somehow failed to check out the object store submodule that provides primitive_list_notifier.hpp. I'd recommend following the steps for reintegrating CocoaPods into your app:

pod cache clean Realm
pod cache clean RealmSwift
pod deintegrate || rm -rf Pods
pod install --verbose
rm -rf ~/Library/Developer/Xcode/DerivedData

If you still see problems, please share the output of pod install --verbose, the relevant section of your Podfile, and the complete compiler output including the error.

All 2 comments

It sounds like CocoaPods somehow failed to check out the object store submodule that provides primitive_list_notifier.hpp. I'd recommend following the steps for reintegrating CocoaPods into your app:

pod cache clean Realm
pod cache clean RealmSwift
pod deintegrate || rm -rf Pods
pod install --verbose
rm -rf ~/Library/Developer/Xcode/DerivedData

If you still see problems, please share the output of pod install --verbose, the relevant section of your Podfile, and the complete compiler output including the error.

It's kind of violent solution :) but it works well !

Was this page helpful?
0 / 5 - 0 ratings