Merge pull request #5862 from element-hq/feature/bma/legacyPackaging

Add a way to configure value of useLegacyPackaging
This commit is contained in:
Benoit Marty 2025-12-10 11:50:08 +01:00 committed by GitHub
commit 0c60b75709
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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()
}
}
}