Add a way to configure value of android.packaging.jniLibs.useLegacyPackaging from command line.

This commit is contained in:
Benoit Marty
2025-12-08 09:54:01 +01:00
parent f15a236c10
commit 5d69f289f5

View File

@@ -199,6 +199,10 @@ android {
resources.pickFirsts += setOf(
"META-INF/versions/9/OSGI-INF/MANIFEST.MF",
)
jniLibs {
useLegacyPackaging = project.findProperty("useLegacyPackaging")?.toString()?.toBoolean()
}
}
}