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 {