-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathKnossos.NET.Android.csproj
More file actions
49 lines (43 loc) · 1.75 KB
/
Knossos.NET.Android.csproj
File metadata and controls
49 lines (43 loc) · 1.75 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
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ApplicationVersion>3</ApplicationVersion>
<AndroidVersionCode>3</AndroidVersionCode>
<ApplicationDisplayVersion>1.3.4</ApplicationDisplayVersion>
<ApplicationId>com.knossosnet.knossosnet</ApplicationId>
<RuntimeIdentifiers>android-arm64;android-x64;android-arm;android-x86</RuntimeIdentifiers>
<TargetFramework>net10.0-android</TargetFramework>
<SupportedOSPlatformVersion>28</SupportedOSPlatformVersion>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<AndroidPackageFormat>apk</AndroidPackageFormat>
<AndroidEnableProfiledAot>false</AndroidEnableProfiledAot>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateApplicationManifest>true</GenerateApplicationManifest>
<AndroidUseAapt2>true</AndroidUseAapt2>
<RunAOTCompilation>false</RunAOTCompilation>
</PropertyGroup>
<ItemGroup>
<AndroidNativeLibrary Include="natives\arm64-v8a\*.so" Abi="arm64-v8a" />
<AndroidNativeLibrary Include="natives\armeabi-v7a\*.so" Abi="armeabi-v7a"/>
<AndroidNativeLibrary Include="natives\x86\*.so" Abi="x86" />
<AndroidNativeLibrary Include="natives\x86_64\*.so" Abi="x86_64"/>
</ItemGroup>
<ItemGroup>
<AndroidJavaSource Include="java\**\*.java" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'Release'">
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Icon.png">
<Link>Resources\drawable\Icon.png</Link>
</AndroidResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Android" />
<PackageReference Include="Xamarin.AndroidX.Core.SplashScreen" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Knossos.NET\Knossos.NET.csproj" />
</ItemGroup>
</Project>