Karumi / Dexter

Android library that simplifies the process of requesting permissions at runtime.
http://karumi.com
Apache License 2.0
5.23k stars 670 forks source link

Unable to resolve #257

Closed ujwal-coditas closed 4 years ago

ujwal-coditas commented 4 years ago

ERROR: Failed to resolve: com.karumi:dexter:6.1.2 Show in Project Structure dialog Affected Modules: app

Below is my project level build.gradle, it has jcenter() in repositories. But still unable to resolve.

buildscript {
    ext.kotlin_version = '1.3.72'
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
pedrovgs commented 4 years ago

@ujwal-coditas I just released the binary minutes ago. Please try with the previous version. Dexter 6.1.0 is already available

ujwal-coditas commented 4 years ago

Cool, thanks :)