ControlCatalog.Android.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>$(AvsCurrentAndroidTargetFramework)</TargetFramework>
  4. <SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
  5. <OutputType>Exe</OutputType>
  6. <Nullable>enable</Nullable>
  7. <ApplicationId>com.Avalonia.ControlCatalog</ApplicationId>
  8. <ApplicationVersion>1</ApplicationVersion>
  9. <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
  10. <AndroidPackageFormat>apk</AndroidPackageFormat>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <AndroidResource Include="..\..\build\Assets\Icon.png">
  14. <Link>Resources\drawable\Icon.png</Link>
  15. </AndroidResource>
  16. </ItemGroup>
  17. <PropertyGroup Condition="'$(AndroidEnableProfiler)'=='True'">
  18. <IsEmulator Condition="'$(IsEmulator)' == ''">True</IsEmulator>
  19. <DebugSymbols>True</DebugSymbols>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <AndroidEnvironment Condition="'$(IsEmulator)'=='True'" Include="environment.emulator.txt" />
  23. <AndroidEnvironment Condition="'$(IsEmulator)'!='True'" Include="environment.device.txt" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" Version="1.0.1.4" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj" />
  30. <ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" />
  31. </ItemGroup>
  32. </Project>