I recently check the dependencies of Firebase for Android and notice that there is a new dependency named In-App Messaging Display? What is the difference between this two? The documentation is all the same.
Asked
Active
Viewed 391 times
1

Mihae Kheel
- 2,441
- 3
- 14
- 38
1 Answers
0
The inapp-messaging-display
is a sub dependency and the inappmessaging
is the parent dependency.
It is the same as adding google play service:
implementation 'com.google.android.gms:play-services:15.0.1'
which will give you all the libraries under the google play service, but it is not recommended to use.

Peter Haddad
- 78,874
- 25
- 140
- 134
-
So does it means that 'in-app messaging' has other sub dependency? Sorry I still don't get it, are they planning to create sub dependencies in the future? Is there any official documentation for this? – Mihae Kheel Jun 04 '19 at 06:39
-
1Child library I mean, yes they did that in case they create more libraries related to inapp messaging. It literally the same as if you add the whole play-service you would get all the libraries that are in play-service – Peter Haddad Jun 04 '19 at 07:04