Ошибка Gradle «Невозможно разрешить зависимость» SDK Amadeus на Android Studio - PullRequest
0 голосов
/ 12 апреля 2020

В настоящее время я пытаюсь использовать Kotlin SDK API Amadeus (https://github.com/amadeus4dev/amadeus-android).

Я использую Android Studio, поэтому мне нужно добавить implementation "com.amadeus:amadeus-android:0.0.2" в Gradle.

Но тогда происходит сбой syn c из-за Амадея.

Здесь отображаются ошибки:

ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not find Amadeus Android:trip:unspecified
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not find Amadeus Android:trip:unspecified
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find Amadeus Android:trip:unspecified

ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not find Amadeus Android:air:unspecified
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not find Amadeus Android:air:unspecified
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find Amadeus Android:air:unspecified

ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not find Amadeus Android:base:unspecified
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not find Amadeus Android:base:unspecified
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find Amadeus Android:base:unspecified

ERROR: Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not find Amadeus Android:hotel:unspecified
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not find Amadeus Android:hotel:unspecified
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find Amadeus Android:hotel:unspecified

Gradle, Android Версии Studio и Kotlin обновлены. Я пытался с новым проектом, но у меня все те же ошибки.

Есть ли способ решить эту проблему? Или это из самого SDK?

Спасибо!

1 Ответ

0 голосов
/ 13 апреля 2020

Вы правы, в версии 0.0.2 возникла проблема. Это было исправлено и перераспределено (на JCentral и MavenCentral). Теперь вы можете использовать amadeus- android версия 0.0.4.

implementation 'com.amadeus:amadeus-android:0.0.4'

Обратите внимание, что Android SDK все еще находится в бета-версии.

...