Это вопрос для новичков, и я считаю, что у него очень простое решение. Моя проблема в том, что импортированная зависимость недоступна из моего MainActivity.kt. Я добавил ее, как и любую другую зависимость, в соответствии с документацией библиотеки. И я просто не могу импортировать нужные мне классы. Они отсутствуют. Есть совет?
build.gradle (Модуль: MyApp)
dependencies {
...
implementation 'com.thelittlefireman:AppKillerManager:2.1.1'
}
При пересборке проекта возникает такая ошибка:
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not find com.thelittlefireman:AppKillerManager:2.1.1.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2 ... -2.1.1.pom
- https://repo.maven.apache.org/maven2/co ... -2.1.1.pom
Required by:
project :app
Подробнее здесь: https://stackoverflow.com/questions/733 ... t-anything