react-native-activity-recognition icon indicating copy to clipboard operation
react-native-activity-recognition copied to clipboard

Any update for 2022?

Open tsachit opened this issue 1 year ago • 1 comments

image

tsachit avatar Dec 23 '22 04:12 tsachit

I got this working by linking the lib's xcodeproj in the libraries of my parent xcodeproj as described here

I also needed to add HEADER_SEARCH_PATHS as mentioned here

My search_paths look like this now and I was able to successfully build from Xcode.

buildSettings = {
	HEADER_SEARCH_PATHS = (
		"$(inherited)",
		/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
		"$(SRCROOT)/../../../React/**",
		"$(SRCROOT)/../../../ios/Pods/Headers/Public/React-Core/**",
		"$(SRCROOT)/../../react-native/React/**",
	);
	...
};

hope it helps anyone that may end up here

lucidprojects avatar Mar 07 '23 20:03 lucidprojects