Android Studio - 无法解析 com.google.firebase.analytics
Android Studio - Cannot resolve com.google.firebase.analytics
我正在使用 Android Studio 并(尝试)通过菜单(工具->firebase)添加 firebase.analytics。我添加了分析功能,但
import com.google.firebase.analytics.FirebaseAnalytics;
导致错误,因为 "analytics" 无法解析。
少了什么?
非常感谢!
请确保您已在 gradle 应用文件中编译了所有需要的 firebase 库以进行分析。
dependencies {
// ...
compile 'com.google.firebase:firebase-core:11.8.0'
// Getting a "Could not find" error? Make sure you have
// added the Google maven respository to your root build.gradle
}
查看此以获取更多信息:https://firebase.google.com/docs/analytics/android/start/
我正在使用 Android Studio 并(尝试)通过菜单(工具->firebase)添加 firebase.analytics。我添加了分析功能,但
import com.google.firebase.analytics.FirebaseAnalytics;
导致错误,因为 "analytics" 无法解析。
少了什么? 非常感谢!
请确保您已在 gradle 应用文件中编译了所有需要的 firebase 库以进行分析。
dependencies {
// ...
compile 'com.google.firebase:firebase-core:11.8.0'
// Getting a "Could not find" error? Make sure you have
// added the Google maven respository to your root build.gradle
}
查看此以获取更多信息:https://firebase.google.com/docs/analytics/android/start/