I have used following commands for webrtc android compilation on Ubuntu 22.04 Python version : 3.8 OpenJDK version : 11
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
cd depot_tools
export PATH=/usr/local/webrtc_android/depot_tools:$PATH
fetch --nohooks webrtc_android
gclient sync
setup proxy on separate location for reaching ubuntu servers
vi /etc/apt/apt.conf.d/01proxy
Acquire::http::Proxy "PROXYSERVER.com:PORT";
run ./build/install-build-deps.sh
cd src
git branch -r
git checkout branch-heads/6099
tools_webrtc/android/build_aar.py
On compilation of build_aar.py, getting the following error saying "undefined identifier jni_zero"
Can any one help on how to get the jni_zero issue fixed ...
Thanks in advance, Nagaraju Samudrala
I was expecting a successful compilation of the command - "tools_webrtc/android/build_aar.py" and android aar file getting generated.