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

Merge pull request #98066 from TCROC/fix-android-mono-export

Fix Android mono export with 2 or more cpu architectures fails
This commit is contained in:
Thaddeus Crews
2025-02-10 12:21:32 -06:00
3 changed files with 18 additions and 12 deletions

View File

@@ -70,7 +70,10 @@ dependencies {
}
// .NET dependencies
monoImplementation fileTree(dir: 'monoLibs', include: ['*.jar'])
String jar = '../../../../modules/mono/thirdparty/libSystem.Security.Cryptography.Native.Android.jar'
if (file(jar).exists()) {
monoImplementation files(jar)
}
}
android {