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
Tried using BRFullTextSearch in a simple sample Swift project and got the following error:
:1:9: note: in file included from :1:
import "Headers/BRFullTextSearch-umbrella.h"
^
/Users/adamgask/Library/Developer/Xcode/DerivedData/BRFullTextSearchTest-dishthlubmfdgmescfmvlyszdwot/Build/Products/Debug-iphonesimulator/BRFullTextSearch.framework/Headers/BRFullTextSearch-umbrella.h:16:9: note: in file included from /Users/adamgask/Library/Developer/Xcode/DerivedData/BRFullTextSearchTest-dishthlubmfdgmescfmvlyszdwot/Build/Products/Debug-iphonesimulator/BRFullTextSearch.framework/Headers/BRFullTextSearch-umbrella.h:16:
import "CJKAnalyzer.h"
^
/Users/adamgask/Library/Developer/Xcode/DerivedData/BRFullTextSearchTest-dishthlubmfdgmescfmvlyszdwot/Build/Products/Debug-iphonesimulator/BRFullTextSearch.framework/Headers/CJKAnalyzer.h:10:10: error: 'CLucene/analysis/AnalysisHeader.h' file not found
include "CLucene/analysis/AnalysisHeader.h"
^
/Users/adamgask/Downloads/BRFullTextSearchTest/BRFullTextSearchTest/ViewController.swift:10:8: error: could not build Objective-C module 'BRFullTextSearch'
import BRFullTextSearch
^
Seems like there is a public header file issue, which does get resolved if I comment out use_frameworks! of my Podfile, but this means I can't use it within my current Swift application.
Is it possible to use BRFullTextSearch in Swift?
Sample repo can be found here.
Simply run Pod install and open & build the workspace.
The text was updated successfully, but these errors were encountered:
Tried using BRFullTextSearch in a simple sample Swift project and got the following error:
Seems like there is a public header file issue, which does get resolved if I comment out
use_frameworks!
of my Podfile, but this means I can't use it within my current Swift application.Is it possible to use BRFullTextSearch in Swift?
Sample repo can be found here.
Simply run
Pod install
and open & build the workspace.The text was updated successfully, but these errors were encountered: