所以我刚刚安装了最新版本的Android Studio,并尝试简单地将Google Play应用程序用于我的Google Pixel XL。我继续前往我的app/build.gradle
文件,并添加了以下行:
compile 'com.google.android.gms:play-services:10.2.0'
所以它看起来像这样:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.google.android.gms:play-services:10.2.0'
}
我同步了我的傻瓜。我也去了工具 - > Android - > SDK Manager。窗口打开后,我转到SDK Manager(已经突出显示) - > SDK工具(选项卡),在支持存储库下,我看到已经选择并安装了Google存储库。我还选择了“Google Play服务”。
我开始使用AVD的那一刻,我试图去app应用程序抽屉,但我仍然没有看到Google Play。
有人可以告诉我,我在这里缺少什么吗?似乎这些步骤适用于每个人,但显然要么我缺少某些东西,要么有一些需要额外步骤或更新的更新。
我也重新启动了Android Studio并试图在我的AVD中找到Google Play但没有成功。