-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCameraXBasic.csproj
20 lines (20 loc) · 1 KB
/
CameraXBasic.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<SupportedOSPlatformVersion>28</SupportedOSPlatformVersion>
<OutputType>Exe</OutputType>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationId>com.android.example.CameraXBasic</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Android.Glide" Version="4.16.0.11" />
<PackageReference Include="Xamarin.AndroidX.Camera.Camera2" Version="1.4.1.1" />
<PackageReference Include="Xamarin.AndroidX.Camera.View" Version="1.4.1.1" />
<PackageReference Include="Xamarin.AndroidX.Navigation.Fragment" Version="2.8.5.1" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.12.0.2" />
<PackageReference Include="Xamarin.KotlinX.Coroutines.Core" Version="1.9.0.2" />
</ItemGroup>
</Project>