我正在开发一个使用Android Studio的谷歌地图应用程序。当我将项目与Gradle文件同步(在Android Studio上选择Tools/Android/sync project with Gradle Files)时,我得到以下错误:
我还在All Projects/Repositories部分中将maven url添加到Gradle项目文件中。
我尝试了堆栈溢出的建议,但没有一个不起作用。
有什么想法吗?
Gradle Project Build file:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
gradle应用程序构建文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "hansen.scott.googlemaps"
minSdkVersion 25
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.android.gms:play-services-maps:11.6.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
错误在行中:implementation'com.google.android.gms:play-services-maps:11.6.2'
请尝试在项目级分级文件中添加此内容
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
}
}
我面临Google服务的问题。我想将SIGN IN API添加到我的应用程序中,但由于以下错误,我无法同步应用程序: 这是我的Gradle 请帮我解决。。。感谢并感谢:)
当我使用以下proguard规则生成APK时 我得到了这个错误 执行部分求值时发生意外错误:Class=[com/google/Firebase/Remote tconfig/Firebase RemteConfig]method =[getInstance()Lcom/google/Firebase/Remote tconfig/Firebase RemteConfig;]Exc0019=[ja
我试图在Rails中使用“omniauth-google-oauth2”gem。我已经将我的应用程序作为web应用程序注册到云控制台,并试图使其工作,但当我试图访问以下URL时:https://accounts.google.com/oauth2/auth?response_type=code&client_id=xxx.project.googleusercontent.com&redirect
在此输入图像说明 Build.Gradle(应用程序): 在此输入图像说明 打印屏幕Android: 在此输入图像说明
尝试在IntelliJ中构建我的第一个helloWorld程序时遇到以下同步错误。 我第一次在运行Windows 10的计算机上安装了IntelliJ。