mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 09:04:32 +01:00
11 lines
374 B
Bash
11 lines
374 B
Bash
#!/usr/bin/env bash
|
|
|
|
# CD to script location
|
|
cd "$(dirname "$0")" || echo "cd to $(dirname "$0") Failed"
|
|
|
|
# Copy ffmpeg executables for all targets
|
|
for target in arm64-v8a armeabi-v7a x86 x86_64
|
|
do
|
|
mkdir -p ./android-ffmpeg/src/main/jniLibs/$target/
|
|
cp ./ffmpeg-android-maker/build/ffmpeg/$target/bin/ffmpeg ./android-ffmpeg/src/main/jniLibs/$target/lib..ffmpeg.so
|
|
done |