[Android/Firebase/잡] Firebase analytics 어떤 걸 써야 할까?

안드로이드에서 구글 애널리틱스를 사용하기 위해 firebase analytics sdk를 추가를 하려고 합니다.

그런데.. 여러 블로그를 참고하며 하다보니 한가지 의문이 생겼습니다.

 

어떤곳에서는 이렇게 사용하고..

implementation 'com.google.firebase:firebase-analytics:19.0.0'

 

또 어떤 곳에서는 아래처럼 사용하는 것을 발견했습니다.

implementation 'com.google.android.gms:play-services-analytics:17.0.0'

두가지 다 애널리틱스라는건 알겠는데.. 물론 버전은 위에 것이 더 높지만, 코드 앞부분이 달라서 두개가 다른 개념인가? 생각했습니다. 그런데 검색해보니 금방 답이 나오더라구요!

 

https://developers.google.com/android/guides/setup

 

Set up Google Play services  |  Google Developers

To develop an app using Google Play services APIs, set up your project with the relevant SDKs, which are available from the Google maven repository. For more detailed instructions, view the Android Studio page about how to update the SDK tools that your ap

developers.google.com

공식 문서

 

 

공식문서를 확인해보니.. 2번째로 쓰이는 코드의 경우 더 이상 사용되지 않는다고 합니다.

그런데 쓴다고 해서 코드에 에러가 난다거나.. 기능에 문제가 생기지는 않았기 때문에 더 의문을 가졌던 것 같습니다.

 

저처럼 의문을 가졌던 분이 계시다면, 해결되셨길 바랍니다~