Googleplaystore min.SDK upload error

Play installer check requires a minimum SDK version of 21 or higher. The uploaded app bundle has a minimum SDK version of 7. Update the minSdkVersion in your app's Android manifest.

Google has made the min.SDK version to 21, but MIT AI2 has min.SDK7 and so we can't upload the app to Google playstore directly, we need to edit manually in manifest and upload it to play store.

Screenshot 2024-12-10 at 11.22.48 PM

Anyone give me how to add it in manifest, I tried below and it doesn't work.

android:minSdkVersion="21" in first line

<?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="34" android:minSdkVersion="21" android:compileSdkVersionCodename="14" 
1 Like
3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.