android-firebase-core和firebase-analytics libraray有什么区别?
作者:互联网
Google最近发布了Firebase的新版本.因此,我试图迁移到Firebase分析.
那么这些库之间有什么区别
com.google.firebase:firebase-analytics:9.0.0
和
com.google.firebase:firebase-core:9.0.0
我发现核心也用于分析.
那有什么区别呢?我应该使用哪个.
解决方法:
目前没有区别.
firebase-core:9.0.0在aar文件中没有任何类和资源,并且包含firebase-analytics(您可以在pom文件中检入).
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-core</artifactId>
<version>9.0.0</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-analytics</artifactId>
<version>9.0.0</version>
<scope>compile</scope>
<type>aar</type>
</dependency>
</dependencies>
</project>
同样在the doc中,您可以找到:
com.google.firebase:firebase-core:9.0.0 ->> Analytics
标签:firebase-analytics,android,firebase 来源: https://codeday.me/bug/20191010/1886969.html