在Xcode中添加图书馆文件夹?

时间:2018-12-01 07:37:27

标签: xcode expo

我正在尝试将蓝牙添加到应用程序并使用react native BLE plx。我使用了Expo,因此分离了我的应用程序。 在安装过程中,在对本机BLE plx page做出反应时,他们说:

Move BleClient.xcodeproj located in .node_modules/react-native-ble-plx/ios
using drag & drop to Libraries folder in your project.

问题是我在Xcode中没有“ Libraries”文件夹。 你知道怎么添加吗? (我不得不使用没有实现的react-native链接react-native-ble-plx)

1 个答案:

答案 0 :(得分:0)

您可以将其直接添加到Podfile中。例如

pod 'React',
    :path => "../node_modules/react-native",
    :inhibit_warnings => true,
    :subspecs => [
      "BleClient",
      ...
    ]

最后在ios文件夹中运行pod install。