build.gradle
configurations.all {
resolutionStrategy {
force 'com.android.support:support-annotations:23.1.1'
}}
异步任务
import android.annotation.MainThread;
import android.annotation.Nullable;
import android.annotation.WorkerThread;
您知道为什么无法解决上述进口问题吗?
答案 0 :(得分:1)
免责声明:我对Android开发一无所知。
在Gradle中,依赖项在dependencies
配置块中定义如下:
dependencies {
implementation 'com.android.support:support-annotations:23.1.1'
}
在dependencies userguide中阅读有关mir的内容。
相比之下, resolutionStrategy
用于控制发生其他use cases以外的版本冲突(传递性依赖关系)时使用哪个特定依赖关系的版本。