Android Google 地图服务导致构建错误

Android Google Maps Services causes building error

我想在我的 Android 项目中使用 Google 地图地理编码 API。因此,我按照 in official docs 行所述添加 google-maps-services

dependencies {
    compile 'com.google.maps:google-maps-services:0.1.7'
    ...
}

出现这样的错误:

Unable to compute hash of .../release/classes.jar

我该如何解决?也许添加一些混淆规则?

感谢您的帮助!

我尝试在一个空项目上实现它,它运行良好。

我看到其他人报告说他们通过删除 minifyEnabled true 行解决了类似的问题。也许你也应该试试。

以防万一,这是我的 gradle 文件:

//Module:app

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "io.github.kylelam.geocoding"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.google.maps:google-maps-services:0.1.7'
}

//项目:地理编码

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

还有我的 onCreate 函数:

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Replace the API key below with a valid API key.
    GeoApiContext context = new GeoApiContext().setApiKey("AIzaSyCZ5QqX69Hbsx7UG2eX5rMzLLd4aiYNdJ8");
    GeocodingResult[] results = new GeocodingResult[0];
    try {
        results = GeocodingApi.geocode(context,
                "1600 Amphitheatre Parkway").await();
    } catch (Exception e) {
        e.printStackTrace();
    }
    System.out.println(results[0].formattedAddress);

    TextView helloworld = (TextView)findViewById(R.id.helloworld);
    helloworld.setText(results[0].formattedAddress);