在Android Studio中,打开项目中的build.gradle文件,并添加以下行:
implementation 'com.google.android.gms:play-services-measurement:17.5.0'
重新编译项目后,此问题应该就会解决。如果仍有问题,请确保你的应用程序的minSdkVersion不小于16,并启用了Google服务。
代码示例:
dependencies { // Other dependencies...
implementation 'com.google.android.gms:play-services-measurement:17.5.0' }
android { // Other configurations...
defaultConfig { // ...
minSdkVersion 16
// ...
}
// Enable Google services apply plugin: 'com.google.gms.google-services' }