Closed jhd-lego closed 3 years ago
It seems that the native module fails building because the source_files path points to the wrong directory https://github.com/KjellConnelly/react-native-shared-group-preferences/blob/master/ios/RNReactNativeSharedGroupPreferences.podspec#L15
Changing it to s.source_files = "**/*.{h,m}" solves the issue for me.
s.source_files = "**/*.{h,m}"
It seems that the native module fails building because the source_files path points to the wrong directory https://github.com/KjellConnelly/react-native-shared-group-preferences/blob/master/ios/RNReactNativeSharedGroupPreferences.podspec#L15
Changing it to
s.source_files = "**/*.{h,m}"
solves the issue for me.