如何确定Android支持库的依赖路径?

时间:2016-08-30 13:10:04

标签: android android-studio android-support-library

我正在尝试构建一个最低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'
}

2 个答案:

答案 0 :(得分:2)

转到file -> Project Structure --> Modules --> app --> Dependencies --> + --> Library Dependency --> "searchterm" --> Ok

您将拥有合适的图书馆

答案 1 :(得分:1)

有一种更容易的方法。

  • 右键单击主项目文件夹。
  • 选择Module Settings。您可以使用 F4 快捷方式来访问它。
  • 转到Dependencies标签。
  • 添加依赖项并选择Library Dependency
  • 搜索您要添加的依赖项,然后单击“确定” 完成。

这将自动更新gradle文件。

希望这会有所帮助:)