mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
15 lines
536 B
Bash
Executable File
15 lines
536 B
Bash
Executable File
#!/bin/bash
|
|
path=`pwd`
|
|
wget https://raw.githubusercontent.com/xiongziliang/ZLToolKit/master/build_for_android.sh -O toolkit_build.sh
|
|
sudo chmod +x ./toolkit_build.sh
|
|
./toolkit_build.sh
|
|
cd $path
|
|
cd ..
|
|
git clone --depth=50 https://github.com/xiongziliang/ZLMediaKit.git
|
|
cd ZLMediaKit
|
|
mkdir -p android_build
|
|
cd android_build
|
|
cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain.cmake -DANDROID_NDK=$ANDROID_NDK_ROOT -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="armeabi" -DANDROID_NATIVE_API_LEVEL=android-9
|
|
make -j4
|
|
sudo make install
|