mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion>
|
|
<RuntimeIdentifiers>android-x86;android-arm;android-arm64</RuntimeIdentifiers>
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
<MandroidI18n>CJK;Mideast;Rare;West;Other;</MandroidI18n>
|
|
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidMessageHandler</AndroidHttpClientHandlerType>
|
|
<!-- NullabilityInfoContextSupport is disabled by default for Android -->
|
|
<NullabilityInfoContextSupport>true</NullabilityInfoContextSupport>
|
|
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
|
<AndroidManifestMerger>manifestmerger.jar</AndroidManifestMerger>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ppy.osu.Framework.Android" Version="2023.510.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AndroidManifestOverlay Include="$(MSBuildThisFileDirectory)osu.Android\Properties\AndroidManifestOverlay.xml" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!-- Fody does not handle Android build well, and warns when unchanged.
|
|
Since Realm objects are not declared directly in Android projects, simply disable Fody. -->
|
|
<DisableFody>true</DisableFody>
|
|
</PropertyGroup>
|
|
</Project>
|