我使用下面的行来构建android支持库:
compile "com.android.support:appcompat-v7:26.+"
此行已在Android Studio中正确构建
我找到了支持库的当前版本,它们是26.0.0,26.0.1,26.0.2& 26.1.0当我指定如下时,gradle脚本没有得到构建。
compile "com.android.support:appcompat-v7:26.0.0"
compile "com.android.support:appcompat-v7:26.0.1"
等,所以如果我指定为:
compile "com.android.support:appcompat-v7:26.+"
然后如何知道哪个版本的26. + gradlescript用于构建当前应用程序?