vlc-android-sdk icon indicating copy to clipboard operation
vlc-android-sdk copied to clipboard

nice project, can you please update Libvlc?

Open NanyangTaiji opened this issue 4 years ago • 2 comments

NanyangTaiji avatar Feb 10 '20 01:02 NanyangTaiji

Would it be updated?

a4tech avatar Mar 10 '20 21:03 a4tech

No need to update this package.

Now, there's official way to use libVLC on Android.

So, no need to use this package anymore.


How to use libVLC on Android (official):

The libVLC is provided by the official VideoLAN project hosted on BinTray. You can directly use the library as a dependency without having to compile it.

add maven url "https://dl.bintray.com/videolan/Android" to your project-level Gradle file as shown below:

 repositories {
      google()
      jcenter()
      maven {
        url "https://maven.google.com";
        }
      maven { url "https://dl.bintray.com/videolan/Android" }
  }
}

and in your app-level Gradle file, add the libVLC dependency

implementation 'org.videolan.android:libvlc-all:' Get the latest libVLC version from the below official VLC GitHub repository.

find the string "libvlcVersion" to get the latest version.

https://github.com/videolan/vlc-android/blob/master/build.gradle#L33

imannms avatar May 29 '20 09:05 imannms