Android Build Process Failing - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Kodi Application (https://forum.kodi.tv/forumdisplay.php?fid=93) +---- Forum: Android Development (https://forum.kodi.tv/forumdisplay.php?fid=184) +---- Thread: Android Build Process Failing (/showthread.php?tid=370775) |
Android Build Process Failing - dmyoung - 2022-12-13 Following the directions for building Matrix: https://github.com/xbmc/xbmc/blob/Matrix/docs/README.Android.md I'm running into an issue at step 5:
I've uploaded the config.log here: https://gist.github.com/dmyoung9/af1d5af4c446e02aa65ce209f2f06c90 Can anyone offer some wisdom on how to get around this? RE: Android Build Process Failing - Mridula - 2023-01-30 If your Android build process is failing, there are several potential causes that could be affecting it. First, you should check the build configuration to make sure all the settings are correct. Incorrect settings can cause the build process to fail. Next, you should check any external dependencies your code may be using. If any of these dependencies are out of date or missing, the build process could fail. Finally, check the code itself for any errors or typos. Incorrect code can cause the build process to fail, so be sure to review all of your files for any possible issues. If you're still having trouble with the build process, you may want to try using a different build tool, as some tools can be more reliable than others. RE: Android Build Process Failing - izprtxqkft - 2023-01-30 your build process is failing because you didnt read thoroughly, the same way you didnt read the sticky in the development section - https://forum.kodi.tv/showthread.php?tid=26707 but whats done is done, your command should look something like this, this is a freebie and will not be followed up on my initial build line: Code: cd $HOME/kodi/tools/depends && ./bootstrap && ./configure --enable-gplv3=yes --with-tarballs=$HOME/xbmc-tarballs --prefix=$HOME/xbmc-depends --host=arm-linux-androideabi --with-sdk-path=$HOME/android-tools/android-sdk-linux --with-ndk-path=$HOME/android-tools/android-ndk-r25b --enable-debug=no RE: Android Build Process Failing - dmyoung - 2023-02-06 Thanks for your help. I figured it out already, but I'm not certain what the exact fix was. Either way, all good now. RE: Android Build Process Failing - TwilightMercy - 2023-02-06 (2023-02-06, 17:13)dmyoung Wrote: Thanks for your help. I figured it out already, but I'm not certain what the exact fix was. How did you fix it? |