You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix the issue preventing installing C# binaries on Android devices with api <= 29
This commit is contained in:
@@ -388,7 +388,13 @@ ext.shouldUseLegacyPackaging = { ->
|
|||||||
return Boolean.parseBoolean(legacyPackagingFlag)
|
return Boolean.parseBoolean(legacyPackagingFlag)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Default behavior for minSdk >= 24
|
if (getExportMinSdkVersion() <= 29) {
|
||||||
|
// Use legacy packaging for compatibility with device running api <= 29.
|
||||||
|
// See https://github.com/godotengine/godot/issues/108842 for reference.
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default behavior for minSdk > 29.
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user