-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FFmpeg builds locally but has conflicting names in production #66
Comments
I see few people have faced the same issue, do you have a sample app so that I can have a try on my end? |
are you using some other FFMPEG lib? (like |
Yh I'm using that
…On Sat, Aug 31, 2024, 04:46 Duc Trung Mai ***@***.***> wrote:
are you using some other FFMPEG lib? (like ffmpeg-kit-react-native)
—
Reply to this email directly, view it on GitHub
<#66 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BBAQBPPRDJYRTBB6C4TGYHTZUGNHLAVCNFSM6AAAAABNK5LT62VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMRSHA2TQNBXHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
then you have to find exact version that |
try this: ios: add this to your
Android: app>build.gradle:
|
I'm using version 6.0.0, how do I ensure the one your package matches it?
…On Sat, Aug 31, 2024 at 10:46 AM Duc Trung Mai ***@***.***> wrote:
then you have to find exact version that ffmpeg-kit-react-native is using
—
Reply to this email directly, view it on GitHub
<#66 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BBAQBPKX6IGB4HUDIWB57ITZUHXNVAVCNFSM6AAAAABNK5LT62VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMRSHE3DEMRQGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Okay great will try
…On Sat, Aug 31, 2024 at 10:48 AM Duc Trung Mai ***@***.***> wrote:
try this:
ios: add this to your ios/Podfile
pod 'ffmpeg-kit-react-native', :subspecs => ['https'], :podspec => '../node_modules/ffmpeg-kit-react-native/ffmpeg-kit-react-native.podspec'
Android: app>build.gradle:
ext {
ffmpegKitPackage = "https"
}
—
Reply to this email directly, view it on GitHub
<#66 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BBAQBPKAIHCPXYNMWWDPXN3ZUHXVDAVCNFSM6AAAAABNK5LT62VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMRSHE3DGMBYGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Added instruction how to solve this issue in README |
you're doing it the wrong way. check my comment: #48 (comment) (no change in Podfile required) |
Hi package builds alright on my ios device locally when I do pod install with the command you gave
FFMPEGKIT_PACKAGE=https FFMPEGKIT_PACKAGE_VERSION=6.0 pod install
but on app center when I'm trying to build for production I get this error
[!] The 'Pods-app' target has frameworks with conflicting names: ffmpegkit.xcframework, libavcodec.xcframework, libavdevice.xcframework, libavfilter.xcframework, libavformat.xcframework, libavutil.xcframework, libswresample.xcframework, and libswscale.xcframework.
is there any suggestion to by-pass this in my production environment in appcenter?
The text was updated successfully, but these errors were encountered: