-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUniScan.Client.App.Platform.Android.csproj
More file actions
executable file
·45 lines (42 loc) · 2.27 KB
/
Copy pathUniScan.Client.App.Platform.Android.csproj
File metadata and controls
executable file
·45 lines (42 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0-android</TargetFramework>
<SupportedOSPlatformVersion>23</SupportedOSPlatformVersion>
<Nullable>enable</Nullable>
<ApplicationId>me.dexrn.uniscan.client</ApplicationId>
<AndroidPackageFormat>apk</AndroidPackageFormat>
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
<Company>UniScanProject</Company>
<Product>UniScan Android</Product>
<AssemblyVersion>0.0.4</AssemblyVersion>
<FileVersion>0.0.4</FileVersion>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>$(AssemblyVersion)</ApplicationDisplayVersion>
<Description>UniScan client for Android</Description>
</PropertyGroup>
<ItemGroup>
<AndroidResource Include="Icon.png">
<Link>Resources\drawable\Icon.png</Link>
</AndroidResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Android"/>
<PackageReference Include="Xamarin.AndroidX.Core.SplashScreen"/>
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Common" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Common.Jvm" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.LiveData.Core" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Process" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Runtime" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Runtime.Android" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModel" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModel.Android" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModelSavedState" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModelSavedState.Android" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Platform\UniScan.Platform.Implementations.Native\UniScan.Platform.Implementations.Native.csproj" />
<ProjectReference Include="..\..\Platform\UniScan.Platform\UniScan.Platform.csproj" />
<ProjectReference Include="..\UniScan.Client.App\UniScan.Client.App.csproj" />
</ItemGroup>
</Project>