Add experimental Android support (#190)
* Add `Raylib-cs.Android` project * Update ci to handle android native libraries * Update ci to pack android project
This commit is contained in:
parent
23ed54cc24
commit
5ae2104c9a
11 changed files with 156 additions and 9 deletions
15
Raylib-cs.Android/Raylib-cs.Android.csproj
Normal file
15
Raylib-cs.Android/Raylib-cs.Android.csproj
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0-android;net7.0-android</TargetFrameworks>
|
||||
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
|
||||
<RootNamespace>Raylib_cs</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Loading…
Reference in a new issue