Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions reactiveui/docs/getting-started/minimum-versions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Visual Studio Minimums

Visual Studio 2022 and beyond.
Visual Studio 2022 and beyond. Currently, Visual Studio 2026 is the latest version and recommended for the best experience.

## Platform Minimums

Expand All @@ -10,26 +10,23 @@ ReactiveUI has the following minimum platform requirements:
|----------|---------|
| .Net Framework | 4.6.2 |
| .Net Standard | 2.0 |
| .Net | 6.0 |
| Windows | 10.0.17763.0 |
| Xamarin Android | 13.0 |
| Xamarin iOS | 1.0 |
| Xamarin Mac | 2.0 |
| Xamarin TVOS | 1.0 |
| .Net | 8.0 |
| Windows | 10.0.19041.0 |
| Xamarin Android | 15.0 |
| Tizen | 4.0 |

## Android Minimums

Android 13.0 is the minimum, with SDK 32.
Android 15.0 is the minimum, with SDK 34.

Make sure your `AndroidManifest.xml` has SDK 32 as the target SDK.
Make sure your `AndroidManifest.xml` has SDK 34 as the target SDK.

```diff
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.giusepe.SextantSample" android:installLocation="auto">
+ <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="32" />
+ <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="34" />
<application android:label="SextantSample.Android"></application>
</manifest>
```

Also that your `CSPROJ` references Android 13.0.
Also that your `CSPROJ` references Android 15.0.