解决Resolved versions for app (26.1.0) and test app (27.1.1) differ.问题

解决办法:在 build.gradle 添加

android {
    ...
}

configurations.all {
    resolutionStrategy.force 'com.android.support:support-annotations:26.1.0'
}

dependencies {
    ...
}

希望可以帮助到大家。

猜你喜欢

转载自blog.csdn.net/qq_19681347/article/details/80926521
app