Ошибка сборки Xcode после добавления входа в facebook - PullRequest
0 голосов
/ 01 августа 2020

Я делаю экран входа в систему, и я добавил в свой pubspe c .yml пакет facebook flutter_facebook_login: ^ 3.0.0 и создал свои стили. xml в папке значений из android, добавленных в android манифест из res

<meta-data android:name="com.facebook.sdk.ApplicationId" 
        android:value="@string/facebook_app_id"/>
    
    <activity android:name="com.facebook.FacebookActivity"
        android:configChanges=
                "keyboard|keyboardHidden|screenLayout|screenSize|orientation"
        android:label="@string/app_name" />
    <activity
        android:name="com.facebook.CustomTabActivity"
        android:exported="true">
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="@string/fb_login_protocol_scheme" />
        </intent-filter>
    </activity>
и в мой AndroidMainest. xml профиль
 <uses-permission android:name="android.permission.INTERNET"/>

Это ошибка, которую я получаю: сборка Xcode завершена. 20.3s Не удалось создать приложение iOS. Вывод ошибки из сборки Xcode: ↳ ** BUILD FAILED ** Вывод Xcode: ↳ В файле, включенном из / Users / ralucasanda / AndroidStudioProjects / tariffo / ios / Pods / BoringSSL-GRPC / src / crypto /fipsmodule/bn/add.c:64:

        /Users/ralucasanda/AndroidStudioProjects/tariffo/ios/Pods/BoringSSL-GRPC/src/crypto/fipsmodule/bn/internal.h:135:10: error: '../../internal.h' file not found, did you mean 'internal.h'?
#include "../../internal.h"
         ^~~~~~~~~~~~~~~~~~
         "internal.h"
/Users/ralucasanda/AndroidStudioProjects/tariffo/ios/Pods/BoringSSL-GRPC/src/crypto/fipsmodule/bn/internal.h:412:2: error: "Either BN_ULLONG or BN_UMULT_LOHI must be defined on every platform."
#error "Either BN_ULLONG or BN_UMULT_LOHI must be defined on every platform."
 ^
2 errors generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
Could not build the application for the simulator.
Error launching application on iPhone 11 Pro.
...