gpt4 book ai didi

Android 谷歌地图服务导致构建错误

转载 作者:行者123 更新时间:2023-11-29 00:08:29 26 4
gpt4 key购买 nike

我想在我的 Android 项目中使用 Google Maps Geocoding API。因此,我按照 in official docs 所述添加了 google-maps-services顺便说一句:

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

出现这样的错误:

无法计算.../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);

关于Android 谷歌地图服务导致构建错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32052968/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com