user4988941
user4988941

Reputation:

What is the difference between Android API and Google API?

I have gone through some of the links that difference between the Google API and android API.I have not got clear explanation.Anyone Can you help me please?

Upvotes: 6

Views: 5268

Answers (4)

Biplov Kumar
Biplov Kumar

Reputation: 1

google API:- it uses all google specific libraries like google map,search engine,sign in.

Android API:- it is also a part of google API. it uses all core android libraries. Android sdk holds Android API. refenter link description here

Upvotes: 0

user3182143
user3182143

Reputation: 9609

Answer for your question is below

The google API includes

    ->Maps and other Google-specific libraries.

The Android one only includes

    ->core android libraries.

Upvotes: 4

Michal Delura
Michal Delura

Reputation: 71

Google API is for developing Google-based services such as Google Maps. Android API is for developing Android apps.

Upvotes: 1

Rémi Becheras
Rémi Becheras

Reputation: 15232

  • There is a huge set of google apis for using all google web services !
  • Android API is part of the Android SDK (software development kit) and is to develop android applications.

You can note that Android API may be considered as a part of google APIs because it authored by google.

Upvotes: 1

Related Questions