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
9
votes
1 answer

Since which Android version is "drawable-nodpi" supported?

Since which Android version is "drawable-nodpi" supported? Is it safe to put images in "res/drawable-nodpi" and expect them to work in all android version from at least since 2.0(Eclair) and up?
Hari Krishna Ganji
  • 1,647
  • 2
  • 20
  • 33
8
votes
1 answer

Android Studio 2.3 Signature Step Verification v1(Jar Signature), v2(Full Apk Signature) Disabled

Android Studio 2.3 Generate Signed Apk Second Step Signature Verification v1(Jar Signature), v2(Full Apk Signature) How to enabled ? Signed Apk Second Step screenshot below gradle files: My build.gradle file is :- android { compileSdkVersion 25 …
8
votes
1 answer

How should I be using/not using deprecated methods in Android

I have gone too long without asking this question. I have come across many methods in Android which are deprecated, but still work in newer versions of the API. So what is the risk of using a deprecated method as long as it works? Here's a more…
8
votes
2 answers

Android - setStatusBarColor() NoSuchMethodError exception

I published my Android app on Google Play and I get many reports about crashes from some devices. At first I thought that this is a SDK version problem, but after I update, it still happens. Here is the report log that I get: …
8
votes
4 answers

Equivalent of NavUtils when not using the Android support library?

This question has also been asked by someone on the Android Developers Google Group (link), but it does not have an answer... I recently removed the v4 support library from my Android project in Eclipse, because my application only targets Android…
7
votes
1 answer

Does Google Play send update notification to Beta Testers?

I've built an application and shared the apk (properly signed) to a few beta testers using an URL, not the Market. Now my app is ready to go to the Market and I would like to know if an "update" notification will be displayed to the beta…
Cesar Menon
  • 121
  • 1
  • 5
7
votes
2 answers

How to generate an Barcode and convert it to Bitmap using new Google Vision API?

How to generate an Barcode and convert it to Bitmap using new Google Vision API? Barcode barcode = new Barcode(); Barcode.Email email = new Barcode.Email(); email.address = "my_email@gmail.com"; email.subject = "My Subject; email.body = "My body…
7
votes
2 answers

Google Analytics picking up wrong version number for my Android App

I am adding Google Analytics in my app. When I go to Real Time > Overview I see 1.0 under App Version. My question is where is Google Analytics getting this 1.0 number from? This is how I am starting Analytics in the onCreate() of my Launcher…
7
votes
4 answers

Android versionCode programmatically

Is there any way to know dynamically and programmatically the versionCode of an Android application?? I don´t know... maybe something like getApplicationContext.getVersionCode(); Thank you very much.
Eloy Fernández Franco
  • 1,350
  • 1
  • 24
  • 47
6
votes
1 answer

How to get Actual file path of a pdf file in Android Pie?

currently I am facing an issue of not able to retrieve the actual file path of pdf. I tried all the solutions I got, but not able to get the actual file path in Android Pie. Any help will be appreciable. Code:- Intent to open file manager and allow…
Nikhil
  • 1,212
  • 13
  • 30
5
votes
1 answer

How to make android:versionName in AndroidManifest.xml changed automatically in eclipse?

I want to change android:versionName each time when I release apk. Are there any eclipse plugin or some other ways that can help it automatically change along with my code's compilation? For example, today is 10/09/2011, I want the value…
5
votes
3 answers

how to compare Android versions

I am trying to create a condition in my code to compare Android versions.Something akin to; if(version < 2.2) {// TODO } else {// TODO } Would anyone please let me know how to do this?
user788511
  • 1,726
  • 2
  • 30
  • 52
5
votes
4 answers

Android Application Version - Min SDK Version

I have looked at http://developer.android.com/resources/dashboard/platform-versions.html 2.1 : 27.2% 2.2 : 63.9% 2.3 : 0.8% 2.3.3 : 1.7% 3.0 : 0.2% I am pretty sure I will use Android 2.1 as my version, covering almost 94% of current users. When…
Josh
  • 16,286
  • 25
  • 113
  • 158
5
votes
1 answer

EditText padding attribute does not work for API 21 and 22

Setting padding value for my EditTexts. However It doesn't work both 21 and 22 api versions. However, It works perfectly for 19, 23, 24. Here is my codes: