Я обновил Android Studio, а затем я не могу построить приложениеОшибка Проект здания с Gradle
Это мое сообщение от Gradle
Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugApkCopy'.
> Could not resolve com.google.android.gms:play-services-identity:10.2.0.
Required by:
BT_QuinielaCatamarca:app:unspecified > com.google.android.gms:play-services:10.2.0
BT_QuinielaCatamarca:app:unspecified > com.google.android.gms:play-services:10.2.0 > com.google.android.gms:play-services-wallet:10.2.0
> Could not resolve com.google.android.gms:play-services-identity:10.2.0.
> Could not parse POM D:\Android\Sdk\extras\google\m2repository\com\google\android\gms\play-services-identity\10.2.0\play-services-identity-10.2.0.pom
> Content is not allowed in prolog.
> Could not resolve com.google.android.gms:play-services-nearby:10.2.0.
Required by:
BT_QuinielaCatamarca:app:unspecified > com.google.android.gms:play-services:10.2.0
> Could not resolve com.google.android.gms:play-services-nearby:10.2.0.
> Could not parse POM D:\Android\Sdk\extras\google\m2repository\com\google\android\gms\play-services-nearby\10.2.0\play-services-nearby-10.2.0.pom
> Content is not allowed in prolog.
И это мой build.gradle файл Использование приложения jsoup библиотека разобрать
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "info.blacktrail.quinielacatamarca"
minSdkVersion 15
targetSdkVersion 23
versionCode 13
versionName "3.47"
multiDexEnabled true
}
buildTypes {
debug {
debuggable true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "4g"
}
}
repositories {
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:design:25.1.1'
compile 'com.google.android.gms:play-services:10.2.0'
compile files('libs/jsoup-1.8.1.jar')
compile files('libs/htmlcleaner-2.16.jar')
}
Я попробовал несколько вещей, как изменение или других инструмент сборки SDK версии
Оба предмета уже добавлены, и Google репозиторий уже установлен. –
Вы пытались поместить эту строку 'apply plugin: 'com.google.gms.google-services' ' в конце файла вместо того, чтобы быть во второй строке –