You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[monodroid] Fix builds when $(AndroidSupportedAbis) contains host (#58)
Commit 0c073f6 broke the src/monodroid build:
src/monodroid/monodroid.targets: error : Cannot copy
.../xamarin-android/src/monodroid/obj/local/host-Darwin/libmonodroid.so to
.../xamarin-android/bin/Debug/lib/xbuild/Xamarin/Android/lib/host-Darwin/libmono-android.debug.d.so,
as the source file doesn't exist.
This is because with 0c073f6, `$(AndroidSupportedAbis)` now contains
e.g. host-Darwin, which isn't a valid ABI name as far as `ndk-build`
is concerned.
Fix the src/monodroid build by excluding non-Android values.
0 commit comments