我正在尝试构建一个最低SDK版本为23的Android应用程序。我相信我需要为我的项目导入支持库v4,v7和Design。我试过猜测,但我的gradle同步一直给出“无法解决”错误。阅读Android Developer文档并没有帮助我找出依赖项的正确路径值。我怎么能这样做?
这是我的build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "net.***.***"
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:support-compat:23.2.1'
compile 'com.android.support:design:23.2.1'
}
答案 0 :(得分:2)
转到file -> Project Structure --> Modules --> app --> Dependencies --> + --> Library Dependency --> "searchterm" --> Ok
您将拥有合适的图书馆
答案 1 :(得分:1)
有一种更容易的方法。
Module Settings
。您可以使用 F4 快捷方式来访问它。Dependencies
标签。Library Dependency
。这将自动更新gradle文件。
希望这会有所帮助:)