Gradle的一个问题

时间:2016-10-24 19:23:48

标签: android google-maps

我使用了本教程:developers.google.com/maps/documentation/android-api/start
这是我的gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.amine.myapplicationmapamine"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.google.android.gms:play-services:9.8.00'
}

我可以在我的模拟器中看到地图,但它不清楚,我收到此错误:

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

没有足够的细节来完全回答这个问题,但建议您使用正确版本的Google Play服务。

不知道你从哪里得到这一行,因为该教程没有使用它。

compile 'com.google.android.gms:play-services:9.8.00'

The latest就是这个。您似乎有额外的0

compile 'com.google.android.gms:play-services-maps:9.8.0'

此外,来自该教程的working sample apps on Github或多或少可以从中复制。

我发现configuration page更多"开始"比实际的起始页面。

答案 1 :(得分:1)

替换class MachineBox extends React.Component { render(){ return ( <div>Hello From React </div> ); } } let target = document.getElementById('machine-box'); ReactDOM.render( <MachineBox />, target )
:compile 'com.google.android.gms:play-services:9.8.00'