Could not determine the dependencies of task ':app:compileDebugKotlin'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
> Could not find com.xwray:groupie:2.8.0.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/xwray/groupie/2.8.0/groupie-2.8.0.pom
- https://repo.maven.apache.org/maven2/com/xwray/groupie/2.8.0/groupie-2.8.0.pom
- https://jitpack.io/com/xwray/groupie/2.8.0/groupie-2.8.0.pom
Required by:
project :app
> Could not find com.xwray:groupie-kotlin-android-extensions:2.8.0.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom
- https://repo.maven.apache.org/maven2/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom
- https://jitpack.io/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom
Required by:
project :app
> Could not find parts.code:money:1.0.0.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/parts/code/money/1.0.0/money-1.0.0.pom
- https://repo.maven.apache.org/maven2/parts/code/money/1.0.0/money-1.0.0.pom
- https://jitpack.io/parts/code/money/1.0.0/money-1.0.0.pom
Required by:
project :app
> Could not find io.michaelrocks:libphonenumber-android:8.12.5.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom
- https://repo.maven.apache.org/maven2/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom
- https://jitpack.io/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom
Required by:
project :app > com.github.joielechong:countrycodepicker:2.4.2
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
buildscript {
ext.kotlin_version = '1.5.20'
ext.room_version = '2.4.0-alpha03'
ext.gradle_version = '3.2.1'
ext.KOTLIN_COROUTINES_VERSION = '1.3.6'
ext.groupie_version = "2.8.1"
ext.play_services_version="17.0.0"
ext.arrow_version = "0.13.2"
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.10'
// Add the Crashlytics Gradle plugin.
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
configurations.configureEach {
resolutionStrategy {
force 'net.sf.proguard:proguard-gradle:6.1.1'
}
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Кажется, я не могу найти причину таких ошибок.
Я вижу библиотеки com.xwray: groupie в mvnrespository, но конкретная версия 2.8.0 была перемещена на вкладку Spring lib m. Поэтому я попробовал версию 2.8.1, которая доступна на вкладке JCenter, но даже она не работает!
Кажется, я не могу найти библиотеку parts.code:money< /code> где угодно в Интернете. Кажется, он бесследно исчез!
Произошли ли какие-то серьезные изменения за последние несколько месяцев?
Через несколько месяцев я открыл свой Android-проект и пытаюсь его запустить. Я получаю эту ошибку [code]Could not determine the dependencies of task ':app:compileDebugKotlin'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not find com.xwray:groupie:2.8.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/xwray/groupie/2.8.0/groupie-2.8.0.pom - https://repo.maven.apache.org/maven2/com/xwray/groupie/2.8.0/groupie-2.8.0.pom - https://jitpack.io/com/xwray/groupie/2.8.0/groupie-2.8.0.pom Required by: project :app > Could not find com.xwray:groupie-kotlin-android-extensions:2.8.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom - https://repo.maven.apache.org/maven2/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom - https://jitpack.io/com/xwray/groupie-kotlin-android-extensions/2.8.0/groupie-kotlin-android-extensions-2.8.0.pom Required by: project :app > Could not find parts.code:money:1.0.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/parts/code/money/1.0.0/money-1.0.0.pom - https://repo.maven.apache.org/maven2/parts/code/money/1.0.0/money-1.0.0.pom - https://jitpack.io/parts/code/money/1.0.0/money-1.0.0.pom Required by: project :app > Could not find io.michaelrocks:libphonenumber-android:8.12.5. Searched in the following locations: - https://dl.google.com/dl/android/maven2/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom - https://repo.maven.apache.org/maven2/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom - https://jitpack.io/io/michaelrocks/libphonenumber-android/8.12.5/libphonenumber-android-8.12.5.pom Required by: project :app > com.github.joielechong:countrycodepicker:2.4.2
Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
[/code] Это файл build.gradle уровня моего проекта [code]buildscript { ext.kotlin_version = '1.5.20' ext.room_version = '2.4.0-alpha03' ext.gradle_version = '3.2.1' ext.KOTLIN_COROUTINES_VERSION = '1.3.6' ext.groupie_version = "2.8.1" ext.play_services_version="17.0.0" ext.arrow_version = "0.13.2"
// NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }
configurations.configureEach { resolutionStrategy { force 'net.sf.proguard:proguard-gradle:6.1.1' } } }
allprojects { repositories { google() mavenCentral() maven { url 'https://jitpack.io' } } } [/code] Кажется, я не могу найти причину таких ошибок. [list] [*]Я вижу библиотеки com.xwray: groupie в mvnrespository, но конкретная версия 2.8.0 была перемещена на вкладку Spring lib m. Поэтому я попробовал версию 2.8.1, которая доступна на вкладке JCenter, но даже она не работает! [*]Кажется, я не могу найти библиотеку parts.code:money< /code> где угодно в Интернете. Кажется, он бесследно исчез! [/list] Произошли ли какие-то серьезные изменения за последние несколько месяцев?