Closed
Description
react-native version
react-native-cli: 0.2.0
react-native: 0.41.2
after rnpm 1.9.0 version https://github.com/rnpm/rnpm/releases/tag/v1.9.0
So when I public my lib, I can add lib in sharedLibraries, just like that
"rnpm": {
"ios": {
"sharedLibraries": [
"libz",
"UserNotifications",
"CoreTelephony",
"Security",
"CFNetwork",
"CoreFoundation",
"SystemConfiguration",
"Foundation",
"UIKit",
"libresolv",
"CoreGraphics"
]
}
}
the problem was that the UserNotification.framework only available in iOS 10, so it could not be required, this framework status should be set to optional
Are there any configuration item to set this framework to optional after react-native link
?