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

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