Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Configuration.props
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
<XAPlatformToolsPackagePrefix Condition=" '$(HostOS)' == 'Darwin' "></XAPlatformToolsPackagePrefix>
<XAPlatformToolsVersion>34.0.1</XAPlatformToolsVersion>
<XAIncludeProprietaryBits Condition="'$(XAIncludeProprietaryBits)' == ''">False</XAIncludeProprietaryBits>
<XABundleToolVersion Condition="'$(XABundleToolVersion)' == ''">1.8.1</XABundleToolVersion>
<XABundleToolVersion Condition="'$(XABundleToolVersion)' == ''">1.15.1</XABundleToolVersion>
<XAPackagesDir Condition=" '$(XAPackagesDir)' == '' And '$(NUGET_PACKAGES)' != ''">$(NUGET_PACKAGES)</XAPackagesDir>
<XAPackagesDir Condition=" '$(XAPackagesDir)' == '' And '$(HostOS)' == 'Windows'">$(userprofile)\.nuget\packages</XAPackagesDir>
<XAPackagesDir Condition=" '$(XAPackagesDir)' == '' And '$(HostOS)' != 'Windows'">$(HOME)/.nuget/packages</XAPackagesDir>
Expand Down
8 changes: 0 additions & 8 deletions Documentation/release-notes/bundletool-1.8.1.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -669,9 +669,16 @@ public void ModifyManifest ([Values (true, false)] bool isRelease)
<_Permissions Include=""&lt;uses-permission android:name=&quot;android.permission.READ_CONTACTS&quot; /&gt;"" />
</ItemGroup>
<Target Name=""_Foo"">
<XmlPeek Query=""/manifest/*"" XmlInputPath=""$(IntermediateOutputPath)android\AndroidManifest.xml"">
<Output TaskParameter=""Result"" ItemName=""_XmlNodes"" />
</XmlPeek>
<PropertyGroup>
<_ExistingXml>@(_XmlNodes, ' ')</_ExistingXml>
<_NewXml>@(_Permissions, ' ')</_NewXml>
</PropertyGroup>
<XmlPoke
XmlInputPath=""$(IntermediateOutputPath)android\AndroidManifest.xml""
Value=""@(_Permissions)""
Value=""$(_ExistingXml)$(_NewXml)""
Query=""/manifest""
Namespaces=""$(Namespace)""
/>
Expand Down