Reputation: 663
Can any one tell what is difference between API 19: Android 4.4 (KitKat) and Google APIs (Google Inc.) (API 19) when we choose from Compile With: ??
Upvotes: 0
Views: 19365
Reputation: 225
It is really pointless to use the Google API's now because most if not all things included in that have been deprecated and moved to google play services.
Selecting Google API will not do anything except maybe increase the size of your program. The difference being is in addition to the 4.4 SDK you would also get all the Google API stuff with it.
As answered here.
Upvotes: 0
Reputation: 820
As answered here, Google API includes Google Play Services like Maps, Play Store, etc.
Upvotes: 1
Reputation: 8023
From : Difference between target google APIs and target 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, you should go with the Android API until you find that you need the Google API; such as when you need Google Maps functionality.
Upvotes: 1
Reputation: 10338
Android api level 19 means the android os version (kitkat). It contains the standard android packages(from Android Open Source Projects). But the google api 19 is the android api 19+ google api's like google settings and other packages provided by google.
Upvotes: 2