I\'m starting to use the Firebase Cloud Messaging.
I have only the example code of the guide to use the Notifications and Analytics. If I don\'t install Analytics n
Using Firebase or Google Play Service libraries from different version is not supported. All libraries are proguarded together so the name of internal methods/classes match between different libraries. When you use libraries from different versions you will likely see missing classes and methods (as you do in this case). Mixing libraries from different versions is also not tested. Even if you happen to successfully run the app its very likely things will not work as designed.
Please always use libraries from exactly the same release version.