Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Target API level requirement from late 2018

I don't know if this is a correct place where ask the following:

I have read on the google play developer console that :

In the second half of 2018, Play will require that new apps and app updates target a recent Android API level. This will be required for new apps in August 2018, and for updates to existing apps in November 2018. This is to ensure apps are built on the latest APIs optimized for security and performance

and

Google Play will require that new apps target at least Android 8.0 (API level 26) from August 1, 2018, and that app updates target Android 8.0 from November 1, 2018.

What does this mean? Does this mean that I will not be able to develop applications compatible with versions smaller than 8.0?

If so, how can bug fixings / new features be introduced within existing apps with versions other than 8.0?

This would result in a "death" of all devices with version other than 8.0 ... Or is Google thinking about releasing android oreo for all devices on the market?

*************** EDIT ***************

The doubt arises from this message on my account of google developer console:

enter image description here

The translation is :

Starting from August 2018, the new apps must minimum target Android 8.0. Starting in November 2018, app updates must target version 8.0

The minumum target is :

An integer designating the minimum API Level required for the application to run.The Android system will prevent the user from installing the application if the system's API Level is lower than the value specified in this attribute.

Bad interpretation of the message ?

like image 258
Mattia Avatar asked Jun 22 '18 11:06

Mattia


People also ask

What is target API level?

When you upload an APK, it must meet Google Play's target API level requirements. New apps must target Android 12 (API level 31) or higher; except for Wear OS apps, which must target Android 11 (API level 30) or higher.

What API level should I develop for?

Starting November 1, 2022 if your app doesn't target API level 30 or above, new users with newer Android OS versions won't be able to discover or install your app on Google Play. You can request an extension if you need more time to update your app.

What is target API level in unity?

android - (Unity) Your app currently targets API level 30 and must target at least API level 31 - Stack Overflow. Stack Overflow for Teams – Start collaborating and sharing organizational knowledge.


2 Answers

What does this mean?

What it means is, you should ensure you have set targetSdkVersion to 26 in your build.gradle and your application is compatible with Android O behavior changes.

Does this mean that I will not be able to develop application compatible with versions smaller than 8.0?

You can set minSdkVersion lower than 8.0.

This would result in a "death" of all devices with version other than 8.0 ... Or is Google thinking about releasing android oreo for all devices on the market?

The distribution rate for Android O is still around 6%, which means older versions still constitute around 94%. They cannot implement drastic changes for this reason. Older OS version will be still supported until the adaptation for Android O changes drastically. It could be challenging because it involves adaptation from huge number of manufacturers.

If you are uploading your app as your first release, then you must ensure you are compatible with Android O.

For updates to existing app, the deadline is November.

onsole, Android Studio, and Firebase. Start survey Meet Google Play's target API level requirement

Bad interpretation of the message ?

Actual statement in English from site is:

Google Play will require that new apps target at least Android 8.0 (API level 26) from August 1, 2018, and that app updates target Android 8.0 from November 1, 2018.

like image 130
Sagar Avatar answered Sep 30 '22 20:09

Sagar


You should first understand the difference between TARGET API and MINIMUM API Levels.

As a reminder, target API level is different from minimum API level. As the name implies, minimum API level is used to declare the lowest version of Android an app supports. The target API level is technically defined as the version of the operating system an app was tested to work with; but in more practical terms, it's used to define a set of behaviors an app expects from the operating system.

Please follow this link to view the complete source of this information: https://www.androidpolice.com/2017/12/19/play-store-require-new-updated-apps-target-recent-api-levels-distribute-native-apps-64-bit-support/

like image 21
Really Nice Code Avatar answered Sep 30 '22 19:09

Really Nice Code