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
3 answers

Call requires API level 14 (current min is 8): android.view.ViewGroup#canScrollHorizontally

I am getting this error: Call requires API level 14 (current min is 8): android.view.ViewGroup#canScrollHorizontally. How I can resolve this in API level before 14? public class ViewPagerEx extends ViewGroup{ @Override public boolean…
ishq
  • 833
  • 1
  • 6
  • 11
1
vote
1 answer

Find out if Google Play Services can't be updated

I have an app that is released and working great. Every now and then few users post me and say that the app requests them to update Google Play Services but Google Play doesn't show the update. This is because their device is no longer supported by…
Finnboy11
  • 986
  • 2
  • 15
  • 34
1
vote
0 answers

Android: device not supported

I have been facing problem of device not supported even though I don't find any such permission issue. So my concern is, are there any website or tools that could compare and tell why this application is not supported in some selected "abc" device.…
user98239820
  • 1,411
  • 2
  • 16
  • 30
1
vote
2 answers

Android - Using AppCompat/ActionBar for older devices(java.lang.NullPointerException)

I have an application which currently works on Android versions 4.x and more. I am trying to change it so it can be usable by older devices such as 2.x and more. Everything is working fine except the action bar. I am getting a null pointer exception…
1
vote
1 answer

App crashing on Droid X

I just built and released an app on TestFlight. However, when I tried to download -> launch the app on my phone it crashes right away. My DroidX details are: System Version: 45.621.10.MB810.Verizon.en.US Android Version: 2.3.4 Kernel Version:…
birdy
  • 9,286
  • 24
  • 107
  • 171
1
vote
1 answer

Relation between android version of device and version specified in the app

While creating a project using eclipse i have Minimum SDK required as Android 2.2(Froyo) and Target SDK as Android 4.2(Jelly Bean) compile with Android 4.3. I have used sqlitebrowser v2.ob1 for creating database. My app runs without any errors (few…
user2648852
  • 711
  • 1
  • 11
  • 13
1
vote
2 answers

Change android application version 2.3 to 4.2 android

My code is working in Android version is 2.3. What should I edit in the code so that it works in version 4.2 and above as well? My code, public class GPSTracker extends Service implements LocationListener { private final Context mContext; …
michael
  • 55
  • 1
  • 2
  • 7
1
vote
3 answers

Check api version programatically ICS doesnt work

I want to check if the android version is above ICS: int currentapiVersion = android.os.Build.VERSION.SDK_INT; if (currentapiVersion >= android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH){ I have a code error, ICE_CREAM_SANDWICH cannot resolved…
1
vote
1 answer

How to implement the feature introduced in higher version to lower version in Android

Can we use a feature that is introduced in higher version in lower versions. For example I have to use Toggle Switches in my application which has the android:minSdkVersion="4". But switch is introduced only from Android 4.0 (API level 14). Is…
Sniper
  • 2,412
  • 11
  • 44
  • 49
1
vote
3 answers

Upgrade android version in Eclipse project

I have created a project in Eclipse with Android 4.0.3 platform, but when I run it on device with android 4.1.2, it doesn't work well. I don't know exactly what causes it, but I want to try to upgrade the project (in Eclipse) to android v.4.1.2.…
King Goeks
  • 492
  • 4
  • 11
  • 28
1
vote
2 answers

Map version 2 in Android 2.3

I have developed simple Map application using google map version2. It is working fine on Android 4.0 supported devices but not run in Android 2.3(API 10). Now I need to support the same application from API level 10. How to convert the application…
M.A.Murali
  • 9,988
  • 36
  • 105
  • 182
1
vote
1 answer

Would you rather use testing Build.VERSION.SDK_INT or reflection to test for existence?

Here's a question for all Android programmers out there: When using old and new API methods in my apps, I found two ways to approach the different API methods. Test for SDK_INT as in if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { …
Zordid
  • 10,451
  • 11
  • 42
  • 58
1
vote
1 answer

Android responseCode 400 if Android-version lower than 4

somebody knows why I get the ResponseCode 400 on android 2.x ? In Android 4.x it works and the server returns 200. URL url = new URL(url_in); URI uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(), url.getPort(),…
1
vote
2 answers

Android app - Lite version or paid version

I am developing one android app with single source library. I wish to submit the app for both free and paid version. For free version I planned to disable some functionalities and give more functionalities for paid one. Is there any way to find the…
Karthick
  • 1,241
  • 5
  • 20
  • 43
1
vote
2 answers

App works fine in android 2.3.7 and not in 4.1.2

I have an app that works fine in android 2.3.4, 2.3.6 and 2.3.7 but it doesn´t in android 4.1.2 or 4.2.2 (I have no more devices) The app calls to a jar file that returns a result, when I test the app in 2.3.7 I make the call to the jar and takes…
Ivan
  • 215
  • 3
  • 17