1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Ensure that Godot's version of libc++_shared.so is always selected in case dependencies have their own

This commit is contained in:
Mauricio Narvaez
2024-05-29 14:37:36 -07:00
committed by Fredia Huya-Kouadio
parent 25519867f2
commit 28f357733f

View File

@@ -124,6 +124,12 @@ android {
// - https://stackoverflow.com/a/44704840
useLegacyPackaging shouldUseLegacyPackaging()
}
// Always select Godot's version of libc++_shared.so in case deps have their own
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
}
signingConfigs {