Failed to resolve: com.github.Drjacky:ImagePicker:v2.1 Show in Project Structure dialog Affected Modules: app
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { repositories { google() maven { url 'https://jitpack.io' } jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:7.1.3"
}
} allprojects { repositories { google() mavenCentral() maven { url 'https://jitpack.io' } jcenter() // Warning: this repository is going to shut down soon
}
}
task clean(type: Delete) { delete rootProject.buildDir }
/// Setting.gradle
import org.gradle.api.initialization.resolve.RepositoriesMode
pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() maven { url "https://jitpack.io" } jcenter() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) repositories { google() mavenCentral() gradlePluginPortal() maven { url "https://jitpack.io" } jcenter()
}
}
rootProject.name = "Csp All In One Print"
include ':app'