Share via

Issue to finish the steps

Jonathan 85 Reputation points
2026-06-03T08:07:57.7633333+00:00

Hi,

Can you help and share with the screens to achieve the following?

User's image

Developer technologies | .NET | .NET Multi-platform App UI
0 comments No comments

Answer accepted by question author

Jack Dang (WICLOUD CORPORATION) 18,720 Reputation points Microsoft External Staff Moderator
2026-06-03T09:30:11.7733333+00:00

Hi @Jonathan ,

I checked this using a default .NET MAUI project. If your project is a .NET MAUI project, you may not find the minSdkVersion setting directly in the Visual Studio UI.

image

In a MAUI project, the Android manifest file is located here:

Platforms/Android/AndroidManifest.xml

Please open that file directly using Visual Studio or any text editor, then manually add the uses-sdk line inside the <manifest> element.

For example:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:allowBackup="true" android:icon="@mipmap/appicon"
        android:roundIcon="@mipmap/appicon_round" android:supportsRtl="true" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-sdk android:minSdkVersion="21" />
</manifest>

You can replace 21 with the minimum Android API level required by your application.

The Visual Studio Android manifest editor may show options such as application name, package name, version, icon, theme, install location, and permissions, but it may not show the minSdkVersion field for a .NET MAUI project.

Hope this helps! If my explanation and the information I provided were helpful, I would greatly appreciate it if you could follow the instructions here so others with the same problem can benefit as well.

Was this answer helpful?

3 people found this answer helpful.
0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.