Kodi Community Forum
The Official OMG, XBMC on Android thread. - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Android (https://forum.kodi.tv/forumdisplay.php?fid=164)
+---- Thread: The Official OMG, XBMC on Android thread. (/showthread.php?tid=136037)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38


RE: The Official OMG, XBMC on Android thread. - Pivos_BigC - 2012-09-02

The pivos-linux build wont work on an M3 box as it stands. Amlogic made some changes in a few places. They tend to do things silently, probably because they dont generally give companies access to their github. Dont flash it to an amlogic devboard unless you wanna be putting a new bootloader in flash over SPI Wink


RE: The Official OMG, XBMC on Android thread. - boss996 - 2012-09-04

What program do you use to compile the code?


RE: The Official OMG, XBMC on Android thread. - kemonine96 - 2012-09-04

(2012-09-04, 16:50)boss996 Wrote: What program do you use to compile the code?

Take a look at https://github.com/xbmc/xbmc/blob/master/docs/README.android . It details what you need in order to build XBMC for Android. If you are looking for a pre-built APK, there are some builds floating around.


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

hi, how can i solve this?
I had this problem with "make apk" command.
Code:
trouble processing:
bad class file magic (cafebabe) or version (0033.0000)
...while parsing xbmc.class
...while processing xbmc.class
1 warning
no classfiles specified
make[1]: *** [package] Error 1
make[1]: Leaving directory `/home/andrea/xbmc-android/tools/android/packaging'
make: *** [apk] Error 2



RE: The Official OMG, XBMC on Android thread. - HenryFord - 2012-09-20

Did you try to run "make -C tools/android/depends/xbmc" first?


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

Yes, i did. I followed the github instructions.


RE: The Official OMG, XBMC on Android thread. - kemonine96 - 2012-09-20

(2012-09-20, 15:52)panizza Wrote: Yes, i did. I followed the github instructions.

Do you have swig and libpcre3-dev installed?


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

(2012-09-20, 15:53)kemonine96 Wrote: Do you have swig and libpcre3-dev installed?
Yes, i have both



RE: The Official OMG, XBMC on Android thread. - kemonine96 - 2012-09-20

(2012-09-20, 15:59)panizza Wrote: Yes, i have both

Which android platform did you use?


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

(2012-09-20, 16:00)kemonine96 Wrote: Which android platform did you use?

i tried with android-9 and android-10


RE: The Official OMG, XBMC on Android thread. - davilla - 2012-09-20

docs/README.android rules, all other docs drool.


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

(2012-09-20, 16:11)davilla Wrote: docs/README.android rules, all other docs drool.

I use that file.


RE: The Official OMG, XBMC on Android thread. - kemonine96 - 2012-09-20

(2012-09-20, 16:13)panizza Wrote:
(2012-09-20, 16:11)davilla Wrote: docs/README.android rules, all other docs drool.

I use that file.

Did you run a parallel build of the tools/android/deps folder via make -j#?


RE: The Official OMG, XBMC on Android thread. - panizza - 2012-09-20

(2012-09-20, 16:15)kemonine96 Wrote: Did you run a parallel build of the tools/android/deps folder via make -j#?
I tried with make -j# and only with make



RE: The Official OMG, XBMC on Android thread. - kemonine96 - 2012-09-20

(2012-09-20, 16:19)panizza Wrote:
(2012-09-20, 16:15)kemonine96 Wrote: Did you run a parallel build of the tools/android/deps folder via make -j#?
I tried with make -j# and only with make

Try cleaning the xbmc sources (git clean -dxf in the root of the sources). Then run through the build process again, but after you run make in the deps folder, run it one last time even if it says "built dependencies successfully". The parallel build has been iffy on android lately.

I also have some wrapper scripts I use to run my builds on github here The scripts are in the android-neon branch in the root directory of the sources.