今天在AS中導(dǎo)入Eclipse的項目欢嘿,報錯:
sdk:minSdkVersion 1 cannot be smaller than version 14 declared in library
百度結(jié)果:
http://blog.csdn.net/Xiong_IT/article/details/51394961
原因:
因為引入了'com.android.support:appcompat-v7:26.1.0'
包断医,其內(nèi)部minSdkVersion = 1孤澎,而我當(dāng)前module有沒有指定minSdkVersion秕磷,所以默認(rèn)最低使用引入庫的避除。
解決方案:
將報錯的那個項目設(shè)置minSdkVersion
于是將所有l(wèi)ibrary項目同意minSdkVersion
defaultConfig {
minSdkVersion 16
targetSdkVersion 26
}