Mark
Mark

Reputation: 1986

Is there a way to view the Android Google Services source code?

I'd like to look at the source code for Google Services (specifically the GoogleMap class, from V2 of the Maps API). I've looked around and haven't been able to find anything.

I know the following:

Upvotes: 4

Views: 1930

Answers (1)

sstn
sstn

Reputation: 3069

Google's own applications (Maps, Play Store, Gmail) are not open source and are not part of the Android Open Source Project (AOSP).

Notice that there is a clear distinction in package names:

android.*      android core components
com.android.*  internal helper/implementation classes
com.google.*   Google's APIs and apps.

Upvotes: 2

Related Questions