我的问题与此问题有关:FBSDK: Cannot read property loginwithreadpermissions of undefined
清理我的应用警告和未使用的图书馆,我注意到我发出警告说public class BoardGUI extends JFrame{
List<JLabel> labelList = new ArrayList<>();
public BoardGUI() {
createView();
}
public void createView() {
createLabels(mainPanel);
}
public void createLabels(JPanel mainPanel) {
int startX = 100;
int startY = 87;
int x = 100;
int y = 87;
int j = 0;
for (int i=0;i<64;i++) {
JLabel label = new JLabel();
label.setBounds(x , y , 62, 62);
labelList.add(label);
mainPanel.add(label);
if ( (i == 7*(j+1) +j )) {
x = startX;
y = startY + 62 *( i / 7);
j=j+1;
}
else {
x = x+62;
}
}
}
。
所以,hcecking文档:Warning: Native component for "RCTFBLoginButton" does not exist
实际上,我的Link Binary with Libraries部分没有这个文件。所以我添加它,然后,应用程序崩溃开始(RN闪屏,然后黑屏,然后iOs回家)。
有什么想法吗?
答案 0 :(得分:0)
我也遇到了与libRCTFBSDK.a相同的问题但在我的情况下,它具有登录功能。
在我的案例中,在<string>fb-messenger-share-api</string>
中将<key>LSApplicationQueriesSchemes</key>
添加到Info.plist
解决了崩溃应用问题。