ImagePicker icon indicating copy to clipboard operation
ImagePicker copied to clipboard

Failed to resolve: com.github.Drjacky:ImagePicker:v2.1 Show in Project Structure dialog Affected Modules: app

Open RajnishA1 opened this issue 3 years ago • 0 comments

// 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'

RajnishA1 avatar Jul 04 '22 11:07 RajnishA1