Не удалось найти support-core-ui.aar Ошибка сборки Ionic 3 - PullRequest
0 голосов
/ 08 июня 2018

Мне не удалось создать приложение Ionic 3, и я получаю следующую ошибку при каждом запуске ionic cordova build android.

FAILURE: Build failed with an exception.

* What went wrong:
 A problem occurred configuring root project 'android'.
 > Could not find support-core-ui.aar (com.android.support:support-core- 
ui:27.1.1). 

BUILD FAILED

 Searched in the following locations:
  https://jcenter.bintray.com/com/android/support/support-core- 
 ui/27.1.1/support-core-ui-27.1.1.aar

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or -- 
debug option to get more log output.
Total time: 17.493 secs
Error: cmd: Command failed with exit code 1 Error output:
FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'android'.
> Could not find support-core-ui.aar (com.android.support:support-core- 
ui:27.1.1).
Searched in the following locations:
  https://jcenter.bintray.com/com/android/support/support-core- 
ui/27.1.1/support-core-ui-27.1.1.aar

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or -- 
debug option to get more log output.

Я уже создавал приложение и не понимаю, почему ононе работает.

1 Ответ

0 голосов
/ 08 июня 2018

Попробуйте, переместив google() на вершину в

allprojects {
  repositories {
    google()
    jcenter()
    ....
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...