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

Way to differentiate android 4.4.4 and android 4.4.2 in code

I have just found out that, I have a piece of code which doesn't work on android 4.4.4 so I don't want to run that and I want to have a if else condition for it however when I try to check through the code it does not work, even I know because…
Saty
  • 2,563
  • 3
  • 37
  • 88
0
votes
1 answer

Project runs differently in different devices

while working on my project, realised that I have a problem with some of my options. in this quastion I showed you how one of my options in the project crashes. then I realised its working in some other devices. I tried to figure out if the problem…
0
votes
1 answer

colorButtonNormal works correctly on my 4.3 android device

I am new in android. According to a note: colorButtonNormal will only work on phones running API 22 and above. So if you have an older phone, the buttons will not be colored orange. My Android version is 4.3 (API 18) , but they change to orange…
Sina Amiri
  • 85
  • 1
  • 9
0
votes
1 answer

android sherlock actionbar menu item going wrong

as the title suggest, I am getting a problem with the action Bar since i have recently installed android Api 22 under eclipse and jdk-7u76-windows-i586. Before the action Bar keep to display the icon with sdk version 7 and higher. But now icon is…
0
votes
0 answers

Android application is not running in KitKat

I have developed an app. I was testing this app with my Jellybean device but now when I am checking it with KitKat device then it is not opening but in is working fine on lollipop device. I am posting my manifest file here. Thanks.
0
votes
1 answer

What are the differences in for RTL bidi (Arabic/Hebrew) support in different versions of Android?

I am looking at supporting RTL in Android and trying to figure out how much effort it would take to support multiple Android OS versions. I know that 4.2 started limited bidirectional (bidi) support. And I know before that, bidi support was much…
gidgets
  • 1
  • 1
0
votes
0 answers

Android application crashes on one device, and not on another

the code below makes the application crash on a meizu phone, but not on my galaxy s2. (meizu version is newer but it's not mine, and not here so I don't know what is the version) public void onClick(View v){ et= (EditText)…
Upsilon42
  • 241
  • 2
  • 17
0
votes
2 answers

why android application logo is not coming in 5.0 version?

After updating my device's android version(lollipop), my app's logo is not displaying in lollipop version. and color of action bar has changed. I am using following theme in my application…
0
votes
2 answers

Android webview post a form trouble on new Android Versions

I have a working scenario on Android version that I tested, 2.3.6- 4.2.2. Firstly, manually I set an html string to WebView, which opens a new web page. However, on Android 4.4.2 and 5.0, Webview returns errors about an SSL certificate. What…
atasoyh
  • 3,045
  • 6
  • 31
  • 57
0
votes
1 answer

Can I change Min SDK version for a hosted app?

I have hosted an app with Min SDK version as 8 and due to some reasons I wanted to upgrade to 11. So my question is that will Play store accepts this change?
Nikesh Devaki
  • 2,091
  • 2
  • 16
  • 24
0
votes
1 answer

Code containing 3.x API class signature doesn't crush on a 2.x device. Why?

Recently I've been looking into tutorials on API backwards compatibility. Obviously ActionBar is not present in 2.* versions and I wonder how is it possible to run code like this on a 2.x device: if (Build.VERSION.SDK_INT >=…
midnight
  • 3,420
  • 3
  • 36
  • 58
0
votes
1 answer

How to name different versionName and versionCode for multiple apks of the same application?

I have one published application on Google play with VersionName=1.0 and VersionCode=1.Now I want to upload a different apk for the same application which will support only tablets. Rules on developer android site say that different apks must have…
akg
  • 670
  • 10
  • 30
0
votes
0 answers

android.widget.TextView InflateException in Api 10

At first I was not supporting lower Android versions. As I had to I converted minSdkVersion to Api 10. I keep getting the error (below the layout code). I have included android-support-v4.jar. As far as I know, android.widget.textview is working…
levi
  • 3,451
  • 6
  • 50
  • 86
0
votes
0 answers

Google play configuration to push different APKs for different Android versions

At the moment we have two app versions in production: as you may see, we have version 1420028 for API levels 19+ and 218 for API levels 7+ Now we've prepared a build for API levels from 16 to 18 We see following error after uploading that build to…
Samat
  • 511
  • 1
  • 6
  • 15
0
votes
1 answer

onCreateView() Requires API level 11.. how to support Activities on older devices (Android Activity)

So far I've only bothered supporting Android API 11 and above, but this app is super simple, so I thought I'd try supporting down to 8. Eclipse only has one complaint, and that's my onCreateView method. How do I handle this without raising my…