相关疑难解决方法(0)

如何在Genymotion虚拟设备上安装Google框架(Play,Accounts等)?

我目前正在尝试Genymotion和男孩,它比ADT模拟器快得多.

但我需要安装Google Play才能将一些应用下载到其中.我该怎么做呢?

android android-virtual-device google-play-services genymotion

344
推荐指数
7
解决办法
43万
查看次数

除非您更新Google Play服务,否则AndroidStudio模拟器"将无法运行"

我的模拟器有这个问题,我正在使用API​​ 5.1.1,我从SDK Manager获得了最新版本的Google Play服务.

AndroidManifest.xml中:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Run Code Online (Sandbox Code Playgroud)

在build.grable中:

compile 'com.google.android.gms:play-services:+'
Run Code Online (Sandbox Code Playgroud)

java android google-play-services android-studio

16
推荐指数
2
解决办法
4万
查看次数

除非您使用Google Maps API更新Google Play服务,否则"应用程序将无法运行"

我使用Google Maps API创建了一个应用.经过几个小时的尝试解决错误,我成功地运行它(没有崩溃).但现在我收到了一个错误.

在此输入图像描述

该警报意味着"除非您更新Google Play服务,否则应用程序将无法运行".我听说过模拟器的错误,但我使用的是真正的设备(在Gingerbread上使用LG P350).我有设备与Android 2.3所以我使用SupportLibrary.

我的活动档案

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".Map" >

     <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

和AndroidManifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="io.secrop.where360"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />



        <permission
            android:name="io.secorp.where360.permission.MAPS_RECEIVE"
            android:protectionLevel="signature"/>
        <uses-permission android:name="io.secorp.where360.permission.MAPS_RECEIVE"/>    
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
        <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
        <!-- The following two permissions are not required to use
         Google Maps Android API v2, but are recommended. -->
        <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

    <uses-feature …
Run Code Online (Sandbox Code Playgroud)

java android google-maps

4
推荐指数
1
解决办法
1万
查看次数