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
- Fixed a crash on Android 12 due to a missing
android.permission.INTERNET
permission - Improved video playback on Android 12
- Fixed a regression that caused the app to crash on some devices
- Updated the FFmpeg library to version 4.4.1
VLC for Android 3.2.11
Released on February 24, 2022
- Fixed a crash on Android 11 due to a missing
android.permission.INTERNET
permission - Improved video playback on Android 11
- Fixed a regression that caused the app to crash on some devices
- Updated the FFmpeg library to version 4.4.0
VLC for Android 3.2.10
Released on January 27, 2022
- Fixed a crash on Android 10 due to a missing
android.permission.INTERNET
permission - Improved video playback on Android 10
- Fixed a regression that caused the app to crash on some devices
- Updated the FFmpeg library to version 4.3.2
VLC for Android 3.2.9
Released on December 23, 2021
- Fixed a crash on Android 9 due to a missing
android.permission.INTERNET
permission - Improved video playback on Android 9
- Fixed a regression that caused the app to crash on some devices
- Updated the FFmpeg library to version 4.3.1
To integrate the latest VLC library into your Android Studio project, follow these steps:
- Open your Android Studio project.
- Go to the
build.gradle
file and add the following dependency:dependencies { implementation 'org.videolan.vlc:libvlc-android:3.2.12' }
- Sync your project by clicking on the "Sync Now" button or by running the command
gradle sync
in the terminal. - 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" />
- Update your
build.gradle
file to include the necessary configuration:android { ... defaultConfig { ... ndk { abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } }
- 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.