Я создаю новое приложение для Android с уровнем API 24. Я получил сообщение об ошибке во время сборки gradle:
Невозможно разрешить зависимость для ': app @ debug / compileClasspath': Не удалось разрешить com.google.android.things: androidthings: 1.0.
Мое приложение build.gradle выглядит так:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
compileOnly 'com.google.android.things:androidthings:1.0'
}
Спасибо за любую помощь.