Andy new update for vlc library for android studio

Here are the latest updates for the VLC library for Android Studio:

VLC for Android 3.2.12

Released on March 24, 2022

VLC for Android 3.2.11

Released on February 24, 2022

VLC for Android 3.2.10

Released on January 27, 2022

VLC for Android 3.2.9

Released on December 23, 2021

To integrate the latest VLC library into your Android Studio project, follow these steps:

  1. Open your Android Studio project.
  2. Go to the build.gradle file and add the following dependency:
    dependencies {
     implementation 'org.videolan.vlc:libvlc-android:3.2.12'
    }
  3. Sync your project by clicking on the "Sync Now" button or by running the command gradle sync in the terminal.
  4. Update your AndroidManifest.xml file to include the necessary permissions:
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  5. Update your build.gradle file to include the necessary configuration:
    android {
    ...
     defaultConfig {
        ...
         ndk {
             abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
         }
     }
    }
  6. Rebuild your project by clicking on the "Rebuild Project" button or by running the command gradle build in the terminal.

Note: Make sure to update your Android Studio to the latest version and also ensure that you have the necessary dependencies and configurations in your project.