mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-05 23:07:42 -05:00
Merge pull request #110263 from raulsntos/dotnet/android-net9.0
[.NET] Require `net9.0` for Android exports
This commit is contained in:
@@ -26,6 +26,10 @@ namespace GodotTools.ProjectEditor
|
||||
var mainGroup = root.AddPropertyGroup();
|
||||
mainGroup.AddProperty("TargetFramework", GodotMinimumRequiredTfm);
|
||||
|
||||
// Non-gradle builds require .NET 9 to match the jar libraries included in the export template.
|
||||
var net9 = mainGroup.AddProperty("TargetFramework", "net9.0");
|
||||
net9.Condition = " '$(GodotTargetPlatform)' == 'android' ";
|
||||
|
||||
mainGroup.AddProperty("EnableDynamicLoading", "true");
|
||||
|
||||
string sanitizedName = IdentifierUtils.SanitizeQualifiedIdentifier(name, allowEmptyIdentifiers: true);
|
||||
|
||||
Binary file not shown.
1
modules/mono/thirdparty/libSystem.Security.Cryptography.Native.Android.jar.source.txt
vendored
Normal file
1
modules/mono/thirdparty/libSystem.Security.Cryptography.Native.Android.jar.source.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
https://www.nuget.org/packages/Microsoft.NETCore.App.Runtime.Mono.android-arm64/9.0.4
|
||||
@@ -2739,6 +2739,7 @@ bool _validate_dotnet_tfm(const String &required_tfm, String &r_error) {
|
||||
List<String> args;
|
||||
args.push_back("build");
|
||||
args.push_back(project_path);
|
||||
args.push_back("/p:GodotTargetPlatform=android");
|
||||
args.push_back("--getProperty:TargetFramework");
|
||||
|
||||
int exitcode;
|
||||
@@ -2778,9 +2779,9 @@ bool EditorExportPlatformAndroid::has_valid_export_configuration(const Ref<Edito
|
||||
err += TTR("Exporting to Android when using C#/.NET is experimental.") + "\n";
|
||||
|
||||
if (!gradle_build_enabled) {
|
||||
// For template exports we only support .NET 8 because the template
|
||||
// includes .jar dependencies that may only be compatible with .NET 8.
|
||||
if (!_validate_dotnet_tfm("net8.0", err)) {
|
||||
// For template exports we only support .NET 9 because the template
|
||||
// includes .jar dependencies that may only be compatible with .NET 9.
|
||||
if (!_validate_dotnet_tfm("net9.0", err)) {
|
||||
r_error = err;
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user