A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hello @David Harper ,
Thanks for your question.
Visual Studio does not expose a compression setting in the Archive UI.
In .NET MAUI, you can control which file types are not compressed during packaging by editing the .csproj file.
<PropertyGroup>
<AndroidStoreUncompressedFileExtensions>.png;.jpg;.mp3;.zip;.dat;.obb</AndroidStoreUncompressedFileExtensions>
</PropertyGroup>
Please replace .png;.jpg;.mp3,.. with the actual extensions of the resource files that the store is complaining about.
After making the changes, clean and rebuild the solution, then archive it again.
If this does not work as expected, please provide the following information below:
- Which store are you uploading to?
- What error message does the store give when rejecting the upload?
I hope this addresses your question. If this response was helpful, please consider following the guidance to provide feedback.