Ошибка Android Studio: проверка сборки не была опубликована - PullRequest
0 голосов
/ 16 мая 2018

Я новичок в Android.я строю базовое приложение в kotlin.Я добавил базовый вид списка, и он работал нормально.но когда я пытаюсь реализовать Google Map, то я получил следующую ошибку в Android Studio 3.1.

The build scan was not published due to a configuration problem.

The Gradle Cloud Services license agreement has not been agreed to.

To agree to the license, include the following in your root project's configuration:
buildScan { licenseAgreementUrl = 'https://gradle.com/terms-of-service'; licenseAgree = 'yes' }

For more information, please see https://gradle.com/scans/help/plugin-license.

Alternatively, if you are using Gradle Enterprise, specify the server location.
For more information, please see https://gradle.com/scans/help/plugin-enterprise-config.

9:27:52 PM: Task execution finished 'signingReport'.

Я попробовал все доступные решения в сети, как:

buildScan {
  licenseAgreementUrl = "https://gradle.com/terms-of-service"
  licenseAgree = "yes"
}

У меня такжедобавлен плагин: примените плагин: 'com.gradle.build-scan'

но не повезло.

пожалуйста, помогите мне.

1 Ответ

0 голосов
/ 26 июля 2018

Просто удалите следующий код из файла build.gradle и снова синхронизируйте Gradle.Все будет решено.

apply plugin: 'com.gradle.build-scan'

buildScan {
    licenseAgreementUrl = 'https://gradle.com/terms-of-service'
    licenseAgree = 'yes'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...