.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,630 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I changed the Target framework in my Android project properties from .NET 8.0 to .NET 9.0.
But then I get this error:
34.0 is not a valid TargetPlatformVersion for Android. Valid versions include: 35.0
Is it necessary to change the Target OS version to 35.0?
In addition, is it necessary to change the targetSdkVersion in AndroidManifest.xml to 35?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.6" android:versionCode="26">
<uses-sdk android:minSdkVersion="31" android:targetSdkVersion="34" />