android开发记录一个依赖冲突问题

147 阅读1分钟

ERROR: Unable to resolve dependency for ':videoplayer@debug/compileClasspath': Could not resolve androidx.annotation:annotation:1.1.0.

诸如此类的问题解决思路

configurations.all {
    //设置强制依赖指定版本
    resolutionStrategy {
        force "androidx.annotation:annotation:1.1.0"
    }
}
dependencies {