Skip to content

Commit

Permalink
Replace deprecated packagingOptions with packaging for jniLibs config…
Browse files Browse the repository at this point in the history
…uration (#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 } }`
  • Loading branch information
CodeWithTamim authored Aug 12, 2024
1 parent c884c09 commit 6be125b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion V2rayNG/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ android {
buildConfig = true
}

packagingOptions {
packaging {
jniLibs {
useLegacyPackaging = true
}
Expand Down

0 comments on commit 6be125b

Please # to comment.