-
Notifications
You must be signed in to change notification settings - Fork 379
Add win-arm64, linux-arm64, android-x64, android-arm, ios-x64 to NativeRuntimeSettings.DefaultSettings #729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,10 +75,15 @@ private static NativeRuntimeSettings DefaultSettings() | |
| new NativeRuntimeAssetConfiguration("win7-x86", "AnyCPU", null, "Windows", BuildTarget.StandaloneWindows), | ||
| new NativeRuntimeAssetConfiguration("win-x64", "x86_64", null, "Windows", BuildTarget.StandaloneWindows64), | ||
| new NativeRuntimeAssetConfiguration("win-x86", "AnyCPU", null, "Windows", BuildTarget.StandaloneWindows), | ||
| new NativeRuntimeAssetConfiguration("win-arm64", "ARM64", null, "Windows", BuildTarget.StandaloneWindows64), | ||
| new NativeRuntimeAssetConfiguration("linux-x64", "x86_64", "x86_64", "Linux", BuildTarget.StandaloneLinux64), | ||
| new NativeRuntimeAssetConfiguration("linux-arm64", "ARM64", null, "Linux", BuildTarget.StandaloneLinux64), | ||
| new NativeRuntimeAssetConfiguration("android", null, null, null, BuildTarget.Android), | ||
| new NativeRuntimeAssetConfiguration("android-x64", "x86_64", null, null, BuildTarget.Android), | ||
| new NativeRuntimeAssetConfiguration("android-arm", null, null, null, BuildTarget.Android), | ||
| new NativeRuntimeAssetConfiguration("android-arm64", "ARM64", null, null, BuildTarget.Android), | ||
| new NativeRuntimeAssetConfiguration("ios", null, null, null, BuildTarget.iOS), | ||
| new NativeRuntimeAssetConfiguration("ios-x64", "x86_64", null, null, BuildTarget.iOS), | ||
|
Comment on lines
+78
to
+86
|
||
| new NativeRuntimeAssetConfiguration("ios-arm64", "ARM64", null, null, BuildTarget.iOS), | ||
| new NativeRuntimeAssetConfiguration("osx-x64", "x86_64", null, "OSX", BuildTarget.StandaloneOSX), | ||
| new NativeRuntimeAssetConfiguration("osx-arm64", "ARM64", null, null, BuildTarget.StandaloneOSX), | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The android-arm runtime identifier typically refers to ARMv7 architecture. Consider setting the CPU architecture to "ARMv7" instead of null to ensure proper platform targeting for ARMv7 devices. This would be consistent with how other architecture-specific entries like android-x64 and android-arm64 explicitly specify their CPU architecture.