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

fix android mono export causing conflicts

This commit is contained in:
Travis Lange
2025-02-10 10:09:52 -05:00
parent 0f95e9f8e6
commit 5e2fd7b1d7
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 {