Eng.Fouad
Eng.Fouad

Reputation: 117655

Android SDK Manager Extras

The Android SDK is shipped with tools:

and extras:

Some of them are documented on developer.android.com and other websites. However, I didn't find anything related to the following:

What are they?

Upvotes: 6

Views: 5409

Answers (2)

Baloomba
Baloomba

Reputation: 169

A bit late but Google Analytics App Tracing SDK revision 3 is not the v3 but v2.0.4 (at least using the mac android sdk manager). You can check it with the Readme.txt available in SDK_PATH/extras/google/analytics_sdk_v2

If you want the latest version you have to download it on the website.

Regards,

Upvotes: 2

ianhanniballake
ianhanniballake

Reputation: 200080

The Android Support Repository and Google Repository are Maven repositories that provide access to the latest optional libraries from Google for use alongside the new Gradle build system used by Android Studio:

  • com.android.support:support-v4:13.0.0
  • com.android.support:support-v13:13.0.0
  • com.android.support:gridlayout-v7:13.0.0
  • com.google.android.gms:play-services:3.1.36

As per the announcement post.

Google Analytics App Tracking SDK is for Google Analytics's Android SDK.

Upvotes: 16

Related Questions