Skip to content

Commit

Permalink
Sync target frameworks and min supported os
Browse files Browse the repository at this point in the history
  • Loading branch information
wcoder committed Oct 24, 2023
1 parent f148a73 commit 531e421
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<TargetFramework>net8.0-android34.0</TargetFramework>
<OutputType>Exe</OutputType>
<SingleProject>true</SingleProject>
<ImplicitUsings>disable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0-ios</TargetFramework>
<TargetFramework>net8.0-ios16.4</TargetFramework>
<OutputType>Exe</OutputType>
<SingleProject>true</SingleProject>
<ImplicitUsings>disable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0-android34.0</TargetFramework>
<SupportedOSPlatformVersion>26</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<TargetFramework>net8.0-android34.0</TargetFramework>
<OutputType>Exe</OutputType>
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
<SupportedOSPlatformVersion>26</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" package="com.softeq.playground_droid" android:versionCode="1">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
2 changes: 1 addition & 1 deletion samples/Playground/Playground.iOS/Playground.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
-->

<PropertyGroup>
<TargetFramework>net8.0-ios16.2</TargetFramework>
<TargetFramework>net8.0-ios16.4</TargetFramework>
<OutputType>Exe</OutputType>
<Platforms>iPhoneSimulator;iPhone;AnyCPU</Platforms>
<SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion>
Expand Down

0 comments on commit 531e421

Please sign in to comment.