Questions tagged [android-version]

The version history of the Android mobile operating system began with the release of the Android beta in November 2007. The first commercial version, Android 1.0, was released in September 2008. Android is under ongoing development by Google and the Open Handset Alliance (OHA), and has seen a number of updates to its base operating system since its initial release.

Since April 2009, Android versions have been developed under a confectionery-themed code name and released according to alphabetical order: Cupcake (1.5), Donut (1.6), Eclair (2.0–2.1), Froyo (2.2–2.2.3), Gingerbread (2.3–2.3.7), Honeycomb (3.0–3.2.6), Ice Cream Sandwich (4.0–4.0.4), Jelly Bean (4.1–4.3), and KitKat (4.4). On 3 September 2013, Google announced that 1 billion activated devices now use the Android OS worldwide. The most recent major Android update was KitKat 4.4, which was released to commercial devices on 22 November 2013, via an OTA update.

Reference: http://en.wikipedia.org/wiki/Android_version_history

281 questions
1
vote
1 answer

creating on app for different Android version - available on lower versions with imports only in higher version

I know this kind of question has been asked before, for example here: Android: how to code depending on the version of the API? There it is also mentioned that one has to compile to the newest Android level. My basic app version should be available…
user387184
  • 10,953
  • 12
  • 77
  • 147
1
vote
1 answer

Show 'Done' key on softkeyboard

I need the softkeyboard to display the 'Done' key when inputting text into an EditText in my application. On an Android 2.1 device the 'Done' button is displayed, but not on 2.3 or it higher. This is the code I use: …
M.A.Murali
  • 9,988
  • 36
  • 105
  • 182
1
vote
1 answer

Android Library target compilation and objects in later Android versions

I am building an Android Library and have a method getting some information about the device. Our target is to support 2.2 and up but was wondering if there is a way to collect information introduced in later versions (ex device serial in 2.3) and…
kjsteuer
  • 617
  • 1
  • 6
  • 14
1
vote
0 answers

how to find the reason that my app does not open in android 8 but opens in android 12 (Kotlin Android Studio)

Hey I work with Kotlin and Android Studio Here is my activity_main.xml:
Amir Elahi
  • 31
  • 5
1
vote
2 answers

Changes in Android BuildConfig.VERSION_NAME

Today I noticed that my debug build broke because the BuildConfig.VERSION_NAME now returns 1.6-debug instead of 1.6 which is how it used to work before. Does anyone know if there's any documentation changes around this change? If you're…
1
vote
1 answer

My app not working on Android 7.0 and older versions

I'm creating a tourist application with google map in app. My app works perfectly on Android 7.1 and higher versions, but when i install on Android 7.0 and older versions i have problem "[App Name] Unfortunately has stopped working". I'm using…
1
vote
2 answers

How to fix the version update the target version is change to 28

When I upload the app in the play store its throws an error to change the target version to 28 if I changed I got a lot of error.So anyone helps me to solve this problem. I tried but nothing is working for me. I changed all the libraries to updated…
jeya chitra
  • 73
  • 1
  • 5
1
vote
0 answers

How to get data usages of application in lower versions of android?

I'm building an application which shows the data-usage and usage-time of applications by using telephonic service. But I'm unable to get this data in pre-marshmallow devices. I have tried the different solutions from other answers on stackowerflow…
IncipientInfo
  • 523
  • 3
  • 10
1
vote
1 answer

How to resolve conflict between version codes of splitted apks and bundles?

In the past I used the following configuration in my gradle file for version code generation using apk splitting: splits { abi { enable true reset() include 'x86', 'armeabi', 'armeabi-v7a', 'arm64-v8a' …
Marcel Gangwisch
  • 8,856
  • 4
  • 23
  • 32
1
vote
2 answers

How can I determine the latest Android version programmatically?

I want to check within my app whether the device runs the latest version of Android. Is there a way to do that? Yes, I could update my app once a year, but I would rather solve that problem technically.
CarHa
  • 1,148
  • 11
  • 31
1
vote
1 answer

Google Play does not show the "Update" feature when I have already manually installed an older version of apk

I have installed an old version (4.0) of my application manually. In Google Play store I have already uploaded a new app with the same package name and incremented the app version to version 5.0. But Google Play store does not show the "Update"…
1
vote
1 answer

how to add sdk version in a react native project already created?

I created a project a month ago and I'm working on, I want to know: which sdk version is in my project how to add other previous version as lollipop (API 21), marshmallow (API 23), nougat (API 24), oreo (API 26)... if it's possible to add theme,…
zedArt
  • 487
  • 1
  • 10
  • 27
1
vote
2 answers

SimpleDateFormat is not working in Android Kitkat

This method is not working for Android Kitkat, but works in Android Oreo very well. public String parseDateToTime(String time) { String inputPattern = "dd/MM/yyyy hh:mm aa"; String outputPattern = "hh:mm aa"; SimpleDateFormat…
kanaga
  • 9
  • 4
1
vote
1 answer

Toolbar is not working same in different devices Android Studio

I was working on an app with some pages in it. During my development phase I always tested my code with an Android Virtual Device (API: 22, Android 5.1), after publishing the app I downloaded it to my phone (API: 26, Android 8.0) and faced it with…
1
vote
0 answers

Clear relation between Android version, API level, NDK version and platform version?

I'm new to Android system, and trying to port some legacy C++ work to Android 5.1 system. I'm a bit confused on version number which I met each day. I search the StackOverflow, and found below to link are helpful, but still a bit confusion. There's…