Skip to content
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

AndroidLibrary Manifest attribute cannot resolve tilde (~) #11619

Open
dipidoo opened this issue Mar 20, 2025 · 3 comments
Open

AndroidLibrary Manifest attribute cannot resolve tilde (~) #11619

dipidoo opened this issue Mar 20, 2025 · 3 comments
Assignees

Comments

@dipidoo
Copy link

dipidoo commented Mar 20, 2025

Android framework version

net9.0-android

Affected platform version

.NET 9.0.101

Description

https://github.com/dotnet/android/blob/d5152b6aea72e50d4089468339d14b80db1919dd/src/Xamarin.Android.Build.Tasks/Tasks/JavaDependencyVerification.cs#L268-L271

The Include attribute can resolve tilde just fine.

Steps to Reproduce

        <AndroidLibrary Include="~/some.aar"
            Manifest="~/some.pom"
            JavaArtifact="some:some:1.1.0"
            Bind="False" />

Did you find any workaround?

not using tilde i.e. /Users/***

Relevant log output

/usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/35.0.39/tools/Xamarin.Android.Bindings.JavaDependencyVerification.targets(27,5): error XA4245: Specified POM file '~/some.pom' does not exist
@dipidoo dipidoo added the needs-triage Have yet to determine what bucket this goes in. label Mar 20, 2025
@dellis1972
Copy link

dellis1972 commented Mar 20, 2025

You cannot use those kinda of paths in MSbuild. they are not expanded.
You can use $(HOME) instead if you need to.

Also picking up something from the home directory is not really going to work on other machines (like CI etc).

@dellis1972 dellis1972 removed the needs-triage Have yet to determine what bucket this goes in. label Mar 20, 2025
@jonathanpeppers
Copy link
Member

Expanding ~ inside an item group would be an MSBuild feature, take for example:

<ItemGroup>
  <Compile Include="~/foo.cs" />
</ItemGroup>

I don't think they would want to implement a unix-specific feature like this, but we can move this to dotnet/msbuild for them to comment.

@jonathanpeppers jonathanpeppers transferred this issue from dotnet/android Mar 24, 2025
@BenjaminBrienen
Copy link
Contributor

BenjaminBrienen commented Mar 24, 2025

~ is a valid folder name on Windows, so the behavior would be weird. Imagine if you have a folder called ~ neighboring the project file. We also should consider whether compiling content from outside of the project root is a best practice.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants