Android Studio中不存在Appindexing

时间:2016-03-07 07:41:40

标签: android android-studio

我正在使用Android Studio开发Android应用程序并出现错误

cin >> x;
 //x = x / 5; remove this
if (x % 5 == 0)
{
    cout << "yes it is divisible by 5 and the value is" << x/5 << endl;
}
else
{
    cout << "no its not divisable by 5" << endl;
}

Error:(61, 127) error: package com.google.android.gms.appindexing does not exist ,我有

build.gradle

我的Android Studio版本为1.5.1,昨天刚刚安装。

如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

请阅读:https://developers.google.com/android/guides/setup

最新版Google Play服务应用索引是:

com.google.android.gms:play-services-appindexing:8.4.0

请务必先在Android SDK Manager中更新您的Google Play服务依赖项。

查看版本:ls ~/android-sdk/extras/google/m2repository/com/google/android/gms/