2022-09-22, 07:17
I have successfully compiled windows and linux build with the guide in inputstream adaptive github site. But I'm struggling with androids build. Could you please add a guide for androids?
Quote:cd $HOMEhow do i proceed to build addon inputstream.adaptive?
git clone https://github.com/xbmc/xbmc kodi
oder
Git Updaten
cd $HOME/kodi
git pull
-------------------
cd $HOME/kodi/tools/depends
./bootstrap
-------------------
./configure --with-tarballs=$HOME/android-tools/xbmc-tarballs --host=arm-linux-androideabi --with-sdk-path=$HOME/android-tools/android-sdk-linux --with-ndk-path=$HOME/android-tools/android-ndk-r21e --prefix=$HOME/android-tools/xbmc-depends
------------------
mkdir $HOME/kodi-build
make -C tools/depends/target/cmakebuildsys BUILD_DIR=$HOME/kodi-build
------------------
cd $HOME/kodi-build
make -j$(getconf _NPROCESSORS_ONLN)
------------------
make apk
Quote:cd kodiIt looks like one of the latest versions will be created. Is there a way to build a specific commit?
make -j$(getconf _NPROCESSORS_ONLN) -C ~/kodi/tools/depends/target/binary-addons ADDONS="inputstream.adaptive" EXTRA_CMAKE_ARGS="-DPACKAGE_ZIP=ON -DPACKAGE_DIR=`pwd`" PACKAGE=1