Skip to content Skip to sidebar Skip to footer

Could Not Resolve Org.jetbrains:annotations:{strictly 13.0}

When I use in my Android project androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test:runner:1.2.0' to reduce deprecation war

Solution 1:

I was able to solve it with

android {
    ...

    configurations.all {
        resolutionStrategy {
            // Please removed it, as soon as the project compiles without it
            force 'org.jetbrains:annotations:13.0'
        }
    }
}

Post a Comment for "Could Not Resolve Org.jetbrains:annotations:{strictly 13.0}"