I added firebase to my project using the wizard that AS provides, but when I added the dependency, it appears differently.
implementation 'com.google.firebase:firebase-auth:11.8.0'
But another google service compiles in the following way:
compile 'com.google.firebase:firebase-core:11.8.0'
As you can see, only the word changes at the beginning, Now I would like to know the difference between implementation and complle or it is simply a synonym.
When I update the file .gradle
, it does not generate an error.