'Android/etc'에 해당되는 글 20건
- 2022.05.23 WebRTC Build
Android 12(Api31)부터 VOIP 관련된 Class들을 deprecated된 후 교체가 필요해 WebRTC를 사용하기 위해 찾아봄.
작성자는 VMWare에 Ubuntu 20.04.4 LTS 버전으로 진행하였음.
* 조건
리눅스 (우분투 추천, Centos glibc를 확인하여 설치)
glibc_2.18 이상
python3 설치
30GB 이상의 여유 공간
mkdir -p ~/Android_WebRTC
cd ~/Android_WebRTC
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=~/Android_WebRTC/depot_tools:$PATH
mkdir webrtc
cd webrtc
fetch --nohooks webrtc_android
# ...wait for 20Gb of stuff...
gclient sync
# ...wait for more 5Gb of stuff...
cd src
unset _JAVA_OPTS
./tools_webrtc/android/build_aar.py --arch "arm64-v8a"
cd ~/Android_WebRTC
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=~/Android_WebRTC/depot_tools:$PATH
mkdir webrtc
cd webrtc
fetch --nohooks webrtc_android
# ...wait for 20Gb of stuff...
gclient sync
# ...wait for more 5Gb of stuff...
cd src
unset _JAVA_OPTS
./tools_webrtc/android/build_aar.py --arch "arm64-v8a"
'Android > etc' 카테고리의 다른 글
WebRTC 정리. (0) | 2022.05.30 |
---|---|
WebRTC Test (With Flutter) (0) | 2022.05.24 |
안드로이드 앱 런칭용 이미지 및 기타 사이트 (0) | 2020.02.19 |
구글 마테리얼 디자인 (0) | 2020.01.08 |
Android 용 VLC 컴파일(Docker Image 사용) (0) | 2019.11.28 |