Replace deprecated packagingOptions with packaging for jniLibs configuration (#3464)

Replaced deprecated packagingOptions with packaging for jniLibs configuration.

Updated build.gradle file to use the new packaging configuration method as the previous
packagingOptions method is deprecated. This change ensures compatibility with the latest
Gradle plugin versions and avoids any potential issues with outdated configuration.

Changes:
- Updated from `packagingOptions { jniLibs { useLegacyPackaging = true } }`
  to `packaging { jniLibs { useLegacyPackaging = true } }`
This commit is contained in:
Tamim Hossain
2024-08-12 07:20:23 +06:00
committed by GitHub
parent c884c098fd
commit 6be125b5cb

View File

@@ -84,7 +84,7 @@ android {
buildConfig = true
}
packagingOptions {
packaging {
jniLibs {
useLegacyPackaging = true
}