-
Notifications
You must be signed in to change notification settings - Fork 564
[Xamarin.Android.Build.Tasks] fix detection of "Android libraries" #8904
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
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 |
|---|---|---|
|
|
@@ -277,8 +277,13 @@ public static void LogWarning (object log, string msg, params object [] args) | |
| #if MSBUILD | ||
| public static bool IsMonoAndroidAssembly (ITaskItem assembly) | ||
| { | ||
| // NOTE: look for both MonoAndroid and Android | ||
| var tfi = assembly.GetMetadata ("TargetFrameworkIdentifier"); | ||
| if (string.Compare (tfi, "MonoAndroid", StringComparison.OrdinalIgnoreCase) == 0) | ||
| if (tfi.IndexOf ("Android", StringComparison.OrdinalIgnoreCase) != -1) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At this point in time (2024), this looks like it'll work. However, this doesn't quite feel "future-proof", as it will succeed for any string that contains Requiring that this be
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We still support building agains |
||
| return true; | ||
|
|
||
| var tpi = assembly.GetMetadata ("TargetPlatformIdentifier"); | ||
| if (tpi.IndexOf ("Android", StringComparison.OrdinalIgnoreCase) != -1) | ||
| return true; | ||
|
|
||
| var hasReference = assembly.GetMetadata ("HasMonoAndroidReference"); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.