The new update of MIT App Inventor is Android 14 with SDK 35, is it good to go for Android 14 instead Android 15, or shall I require an extension from google play store?
The new update of MIT App Inventor is Android 15 with API 35.
Best to compile your app for this so that Google does not reject it after 31 August.
The new minSdkVersion of AI2 is now API 14 (Android 4.01, ICE_CREAM_SANDWICH
) since the targetSdk 35 update.
Thank you, now I will compile my apps with 14+
...with minSdk 14. So your app can be installed on any device with API > 13.
But google is asking to upgrade for Android 15, and the update of app inventor is 14+, so I hope goolge does not block from updating apps after 31st August
You are confusing Android versions with API versions
Android 14 is API 34
Android 4 is API 14
Android 15 is API 35
@Tejal_Bhagat You can better understand through this website.
The following table lists major Android versions and their corresponding API levels:
The following attributes can be declared in the Android Manifest (manifest.xml):
-
targetSdkVersion (Google's annual policy to target a specific higher SDK)
-
minSdkVersion (SDK/API on which the app can still be installed)
-
compileSdkVersion (SDK version with which the app was compiled)
-
maxSdkVersion (highest SDK version on which the app can be installed).
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.