Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android Version 12 - Library getting error #188

Open
keyurAdhyaru opened this issue Oct 18, 2021 · 1 comment
Open

Android Version 12 - Library getting error #188

keyurAdhyaru opened this issue Oct 18, 2021 · 1 comment

Comments

@keyurAdhyaru
Copy link

I have update my android version to 31.
after updated I got the below error.

Could not find com.mindorks.android:prdownloader:0.6.0.
Required by:
project :app

@ModirGithub
Copy link

go to settings.gradle
and add this

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        flatDir {
            dirs 'libs'
        }
        jcenter()
        maven { url "https://jitpack.io" }
        mavenCentral()
    }
}


dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        jcenter()
        flatDir {
            dirs 'libs'
        }
        maven { url "https://jitpack.io" }
        mavenCentral()
    }
}
rootProject.name = "My Applicationcvx"
include ':app'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants