mirror of
https://github.com/ppy/osu.git
synced 2026-05-16 22:24:11 +08:00
14d8cf7275
- depends on https://github.com/ppy/osu-framework/pull/6700 - closes https://github.com/ppy/osu/issues/36340 - supersedes and closes https://github.com/ppy/osu/pull/36352 <img width="676" height="451" alt="image" src="https://github.com/user-attachments/assets/4f11c761-175b-495a-8b24-16fb6c481a15" /> --------- Co-authored-by: Dean Herbert <pe@ppy.sh>
21 lines
1001 B
XML
21 lines
1001 B
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>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ppy.osu.Framework.Android" Version="2026.129.0" />
|
|
</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>
|