我尝试在我的应用中实施Google地图,我已经请求了API,并且已经在正确的位置正确地放入了API密钥,并且地图似乎没有任何问题,但部分代码以红色突出显示。非常感谢任何帮助!哦,我正在使用android studio。
另外,在此之前我已经在测试应用上尝试过它,并且它工作得很好iirc。然后我在google的开发者控制台中删除了该项目和所有密钥,并为我的主项目启动了新项目,这种情况就发生了。如果此信息有任何帮助。
这是代码错误的屏幕截图:
如果有帮助,可以使用build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "bossharriscorporation.sendmethere"
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.0'
compile 'com.google.android.gms:play-services:7.8.0'
}
答案 0 :(得分:0)
我找到了答案。我粗心。显然,应用程序名称中不能包含感叹号。我之前不知道。我会学到更多,以改善自己。