Where can I Download API 17 android 4.2? - android

I need to download API 17 android 4.2, I'm searching in google but i cant find it. I dowloaded the last version KITKAT but I dont like it because I new in android and all examples in the internet use 4.0 or 4.2 versions

I think you can find the ADT here: http://developer.android.com/sdk/index.html

http://developer.android.com is a good starting point. To download code for a special api version you can use the SDK Manger which is included in the sdk/adt download.

Execute Android SDK MANAGER and select version 4.2.2 (API 17). This will download and install. You can check in your android-sdk/system-images/android-17

Related

Running My First App On Android Studio

I created a project with API level 8 (Android 2.2) and downloaded the 2.2 SDK in the SDK manager. When I run my android project this error was shown:
Error:(47, 21) No resource found that matches the given name: attr 'android:borderlessButtonStyle'.
I searched and found out that the borderless style is available on API level 11 and above so why did the Google Developers Hello World tutorial say to choose Android 2.2 so that all devices can run the app?
I changed the API level to 15 which solved the problem.
My question is why does the Android tutorial say to select 2.2 and then run application?
What should I do to run my first app on Android 2.2?
Download sdk for api level 15 on your sdk manager and then run the app in your emulator. Or even you could have set the target sdk version as 8 in your application. So please change it and then try running your app
Happy coding..
You misunderstood something. You should differentiate between android minimum SDK and the compile and target SDK you can see this link to know the difference.
You should target the latest version in the compile and target SDKs and set your min SDK as you like.
You are now getting this error because your are compiling with an old SDK and you are referring to some of the new APIs that are introduced after this API, they won't be used if you are using an older version, but they will use it in the later versions of the OS because it makes the process easier or getting the look and feel of the new versions of android.
This is happening in one of your libraries and I think it's the appcompat v7 library.

android studio, level and platform issue

I have android studio. It seems that I have an API Level of 20 and Platform 4.4W as Android Virtual Device which is a no no.
Can any one tell me step by step (or guide me to a link) that will show me how to put a Level 19 and
Platform 4.2.2 set on ADV.
This is the first time I download a program but am familiarizing myself with the source code files.
Thank you
Just open the SDK manager located under tools->Android->SDK Manager.
All the SDK's and necessary files are available there for download.
Once you downloaded the content it should just work.

Can't see/select API 19 in Eclipse Indigo in project properties

Trying to update an app to newer version of android. Downloaded/installed API 19 and supporting files via SDK manager (as administrator), SDK manager shows that all files are installed - but when selecting [project properties - android]... api 19 is not listed. Can't include screenshots since i don't have enough reputation points - but screenshot would show SDK manager with installed android 4.4.2 (api 19), and a second screenshot showing android properties only listing up to api 18.
Closest post/solution found was how to access api 19 for android in eclipse?
but didn't help...
using Eclipse indigo
Many thanks for your help!!
You will need to update eclipse too after updating the SDK. Go to Help -> Check for updates and see if some component needs update.

How to download sdk api 17 for android?

I am not able to download adt bundle api 17 for phonegap 3.0,
I am configuring Phonegap 3.0 with Android Eclipse,When I am running android from Node.js Command prompt, It is giving error --Please install Android Target 17.Currently I am using ADT bundle SDK 4.3(API 18). In the SDK Manager only API 18 Version is showing.
Please tell me how to update or download API 17 for Phonegap 3.0.
http://developer.android.com go here and follow their short tutorials for beginner on how to make your first mobile application.
I really really don't suggest you to do any mobile application development for android before you don't read this tutorial.
It wil lteach you how to download everything you need.
1) Check your SDK Manager and install 4.2.2
2) Check manifest for android:minSdkVersion=" "
android:targetSdkVersion=" "
Hope you will solve it

Download android 2.3.4 API

I need to download Android api 2.3.4.
But when I start Android Sdk manager, It shows me all the api options to download except Android 2.3.4.
Does anyone has idea how can i download android 2.3.4?
Thank You.
The API Level for the SDK is not quite the same as the version number for Android. Android version 2.3.4 corresponds with API Level 10, so just download API level 10 from the SDK and you should be good to go.
The 2.3.4 release was a maintenance release that only included internal fixes. No API changes were made: http://developer.android.com/sdk/android-2.3.4.html
Oddly, the second sentence of that release says that a new "Open Accessory API" was added in 2.3.4, so I'm not sure how that qualifies as no API changes ...
Looking in my downloaded "platforms" from the SDK manager, the android-10 platform seems to be based on 2.3.3 r2. I don't see any way to get a 2.3.4 image. (But I may be missing something.)
google only seems to have released the api for 2.3.1 and 2.3.3
When you will download Android SDK you will automatically get that API documentation in the SDK if updated.

Categories

Resources