我的应用程序在模拟器中工作但不在真实设备中

时间:2015-09-08 04:00:25

标签: android google-maps-api-3 android-emulator

我使用的是Android Studio 1.2.2版本。我从开发开始就在API 18版本中创建了我的Android应用程序。在我的应用程序中,Google地图扮演着重要的角色。

在我的SDK Manager中,他们无法下载API级别17& 18 for Google API x86。所以我下载了Google API 19(x86)版本。它在Emulator中运行得很好,但在Lallipop 5版本的真实设备中却没有。

我的应用构建成绩:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "22.0.1"

lintOptions {
    checkReleaseBuilds false
    abortOnError false
}
defaultConfig {
    applicationId "com.example.bharat.plantnow"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    // multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:7.8.0'
compile 'com.google.android.gms:play-services-maps:7.8.0'
compile 'com.android.support:appcompat-v7:23.0.0'

}

1 个答案:

答案 0 :(得分:0)

GoogleMap无法显示,因为当您使用模拟器时,您有一个构建,而当生成.apk文件时,您有另一个构建版本。 查看文档:{​​{3}}