1. Anuncie Aqui ! Entre em contato fdantas@4each.com.br

[Flutter] Flutter app run issue on iOS after adding videoSDK

Discussão em 'Mobile' iniciado por Stack, Novembro 8, 2024 às 12:22.

  1. Stack

    Stack Membro Participativo

    I'm encountering a build issue when attempting to run my Flutter app on iOS after integrating the VideoSDK. The specific error message is:

    The specific error message is:

    'ios/Pods/Headers/Private/grpc/gRPC-Core.modulemap' not found


    I've followed the official documentation and tried increasing the platform :ios, '13.0' setting in my ios/Podfile, but the problem persists.

    videoSDK Doc

    've followed the official documentation and tried the recommended solutions, including:


    1. Increasing iOS Platform Version: Set platform :ios, '13.0' in the Podfile.


    2. Customizing Pod Installation: Implemented the following code snippet in my Podfile as suggested in the documentation:

    post_install do |installer|
    installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |build_configuration|
    build_configuration.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64 i386'
    end
    end
    end


    Despite these efforts, the issue persists.

    Continue reading...

Compartilhe esta Página