2018-12-13 14:10:15 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2019-03-06 07:55:18 +08:00
|
|
|
|
<Import Project="..\osu.Android.props" />
|
2018-12-13 14:10:15 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<ProjectGuid>{D1D5F9A8-B40B-40E6-B02F-482D03346D3D}</ProjectGuid>
|
|
|
|
|
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
|
|
|
<TemplateGuid>{122416d6-6b49-4ee2-a1e8-b825f31c79fe}</TemplateGuid>
|
|
|
|
|
<RootNamespace>osu.Android</RootNamespace>
|
|
|
|
|
<AssemblyName>osu.Android</AssemblyName>
|
|
|
|
|
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
|
2019-07-02 18:40:33 +08:00
|
|
|
|
<AndroidSupportedAbis>armeabi-v7a;x86;arm64-v8a</AndroidSupportedAbis>
|
2020-02-27 08:24:45 +08:00
|
|
|
|
<EnableLLVM>false</EnableLLVM> <!-- This currently causes random lockups during gameplay. https://github.com/mono/mono/issues/18973 -->
|
2018-12-13 14:10:15 +08:00
|
|
|
|
</PropertyGroup>
|
2019-07-04 12:07:59 +08:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<MandroidI18n>cjk;mideast;other;rare;west</MandroidI18n>
|
|
|
|
|
<AndroidDexTool>d8</AndroidDexTool>
|
|
|
|
|
<AndroidLinkTool>r8</AndroidLinkTool>
|
|
|
|
|
</PropertyGroup>
|
2021-04-05 18:36:18 +08:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<AndroidLinkMode>None</AndroidLinkMode>
|
|
|
|
|
<MandroidI18n>cjk;mideast;other;rare;west</MandroidI18n>
|
|
|
|
|
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
|
|
|
|
</PropertyGroup>
|
2018-12-13 14:10:15 +08:00
|
|
|
|
<ItemGroup>
|
2020-10-14 19:43:56 +08:00
|
|
|
|
<Compile Include="GameplayScreenRotationLocker.cs" />
|
2019-01-06 12:15:09 +08:00
|
|
|
|
<Compile Include="OsuGameActivity.cs" />
|
2019-03-17 22:39:07 +08:00
|
|
|
|
<Compile Include="OsuGameAndroid.cs" />
|
2018-12-13 14:10:15 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="Properties\AndroidManifest.xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Catch\osu.Game.Rulesets.Catch.csproj">
|
|
|
|
|
<Project>{58f6c80c-1253-4a0e-a465-b8c85ebeadf3}</Project>
|
|
|
|
|
<Name>osu.Game.Rulesets.Catch</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Mania\osu.Game.Rulesets.Mania.csproj">
|
|
|
|
|
<Project>{48f4582b-7687-4621-9cbe-5c24197cb536}</Project>
|
|
|
|
|
<Name>osu.Game.Rulesets.Mania</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Osu\osu.Game.Rulesets.Osu.csproj">
|
|
|
|
|
<Project>{c92a607b-1fdd-4954-9f92-03ff547d9080}</Project>
|
|
|
|
|
<Name>osu.Game.Rulesets.Osu</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Taiko\osu.Game.Rulesets.Taiko.csproj">
|
|
|
|
|
<Project>{f167e17a-7de6-4af5-b920-a5112296c695}</Project>
|
|
|
|
|
<Name>osu.Game.Rulesets.Taiko</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj">
|
|
|
|
|
<Project>{2a66dd92-adb1-4994-89e2-c94e04acda0d}</Project>
|
|
|
|
|
<Name>osu.Game</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-01-10 09:31:42 +08:00
|
|
|
|
<AndroidResource Include="Resources\drawable\lazer.png" />
|
2018-12-13 14:10:15 +08:00
|
|
|
|
</ItemGroup>
|
2021-03-29 22:06:29 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Formats.Asn1">
|
|
|
|
|
<Version>5.0.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2021-04-09 07:34:35 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
|
|
|
|
|
</ItemGroup>
|
2018-12-13 14:10:15 +08:00
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
2020-10-14 19:43:56 +08:00
|
|
|
|
</Project>
|