Android SDK Manager Extras

Android SDK comes with tools:

  • Android SDK Tools (v22.0.1)
  • Platform for Android SDK (v17)
  • Built-in Android SDK Tools (v17)

and additional features:

  • Android Support Repository (v1)
  • Android Support Library (v13)
  • Google AdMob Ads SDK (v11)
  • Google Analytics App Tracking SDK (v3)
  • Google Analytics SDK (v2)
  • Google Cloud Messaging for Android Library (v3)
  • Google Play Services (v7)
  • Google repository (v1)
  • Google Play APK Extension Library (v3)
  • Google Play Billing Library (v4)
  • Google Play Licensing Library (v2)
  • USB driver for Google (v7)
  • Google Web Driver (v2)
  • Intel x86 Emulator Accelerator (HAXM) (v3)

Some of these are documented on developer.android.com and other websites. However, I did not find anything related to the following:

  • Android Support Repository (v1)
  • Google Analytics App Tracking SDK (v3)
  • Google repository (v1)

What are they?

+6
source share
2 answers

The Android support repository and the Google repository are Maven repositories that provide access to the latest optional libraries from Google for use with 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 reported in the message.

Google Analytics Application Tracking SDK for Google Analytics Android SDK .

+16
source

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

If you need the latest version, you need to upload it to the website.

Hello,

+2
source

Source: https://habr.com/ru/post/947423/


All Articles