Same here: black screen and crash......
......
Solved this by replacing line (125) in the file extras/package/android/vlc-android/src/org/videolan/vlc/android/DatabaseManager.java :
PLAYLIST_MEDIA_ID + " INTEGER PRIMARY KEY NOT NULL AUTOINCREMENT, " +
by
PLAYLIST_MEDIA_ID + " INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, " +
Gosh i
missed this, should have come here earlier, I had exactly the same problem!!!
After trying for sometime I took and tried to build a new version from
http://wiki.videolan.org/AndroidCompile and now blocked by JNI compilation error like below:
Code: Select all
zbgh@zbgh:~/android/android$ VLC_BUILD_DIR=vlc/android make
=== Building libvlcjni with neon ===
make[1]: Entering directory `/home/zbgh/android/android/vlc-android'
Compile thumb : vlcjni <= libvlcjni.c
Compile thumb : vlcjni <= aout.c
Compile thumb : vlcjni <= thumbnailer.c
SharedLibrary : libvlcjni.so
../vlc/android/modules/audio_filter/.libs/libspeex_resampler_plugin.a(libspeex_resampler_plugin_la-speex.o): In function `Close':
speex.c:(.text+0x2a0): undefined reference to `speex_resampler_destroy'
../vlc/android/modules/audio_filter/.libs/libspeex_resampler_plugin.a(libspeex_resampler_plugin_la-speex.o): In function `Open':
speex.c:(.text+0x418): undefined reference to `speex_resampler_init'
speex.c:(.text+0x420): undefined reference to `speex_resampler_strerror'
../vlc/android/modules/audio_filter/.libs/libspeex_resampler_plugin.a(libspeex_resampler_plugin_la-speex.o): In function `Resample':
speex.c:(.text+0x5fc): undefined reference to `speex_resampler_set_rate'
speex.c:(.text+0x600): undefined reference to `speex_resampler_process_interleaved_int'
speex.c:(.text+0x608): undefined reference to `speex_resampler_process_interleaved_float'
speex.c:(.text+0x618): undefined reference to `speex_resampler_strerror'
collect2: ld returned 1 exit status
make[1]: *** [/home/zbgh/android/android/vlc-android/obj/local/armeabi/libvlcjni.so] Error 1
make[1]: Leaving directory `/home/zbgh/android/android/vlc-android'
make: *** [vlc-android/libs/armeabi/libvlcjni.so] Error 2
I checked earlier post and there were a couple of similar but not the same problems, does not seem helpful.
Anybody can give me a hand? need to pass the build baddly. Many thanks!