Difference between target google APIs and target android

AndroidVirtualDeviceTargetAvd

Android Problem Overview


I'm developing android with SDK 2.3.3 using Eclipse IDE. As you all know to run my app, I should generate virtual device. From 'create new AVD' window, I can see many targets. There are 2 targets for API level 10 such as 'android 2.3.3' and Google APIs(Google Inc). Among those targets, I'm uncertain which one I should choose.

My question is what's the difference between them.

Thanks in advance Dan

Android Solutions


Solution 1 - Android

The Google API includes Google Maps and other Google-specific libraries. The Android one only includes core Android libraries.

As for which one to choose, I would go with the Android API until you find that you need the Google API; such as when you need Google Maps functionality.

Here is a link to the Google API page.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionallboryView Question on Stackoverflow
Solution 1 - AndroidZack MarrapeseView Answer on Stackoverflow