From 7559d12bdfb717d756795bb59d928d160e5eb6fb Mon Sep 17 00:00:00 2001 From: Marek Habersack Date: Thu, 22 Feb 2024 14:06:40 +0000 Subject: [PATCH] Add a property required by #8478 (#8749) * Add a property required by #8478 Context: https://github.com/xamarin/xamarin-android/pull/8478 Context: https://github.com/xamarin/monodroid/pull/1393 Merging this no-op change will make it easier to orchestrate merging of the two PRs above. It allows us to merge the `monodroid` one before merging #8478 and prevents breaking of any other builds or PRs in between merging of the two PRs. * Don't require it yet * Dummy change to kick-off the build * Undo the former change --- src/Xamarin.Android.Build.Tasks/Tasks/BuildApk.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Xamarin.Android.Build.Tasks/Tasks/BuildApk.cs b/src/Xamarin.Android.Build.Tasks/Tasks/BuildApk.cs index 0a15a2b8a26..c99ce0db5c5 100644 --- a/src/Xamarin.Android.Build.Tasks/Tasks/BuildApk.cs +++ b/src/Xamarin.Android.Build.Tasks/Tasks/BuildApk.cs @@ -33,6 +33,8 @@ public class BuildApk : AndroidTask [Required] public string ApkOutputPath { get; set; } + public string AppSharedLibrariesDir { get; set; } + [Required] public ITaskItem[] ResolvedUserAssemblies { get; set; }