您的位置:首页 > 移动开发 > Android开发

android studio gradle dependencies 包存放在哪儿?

2017-02-08 23:08 381 查看
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':social_sdk_library_project')
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.github.chrisbanes.photoview:library:1.2.3'
compile 'com.android.support:support-v4:22.2.0'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.networkbench.newlens.agent.android:nbs.newlens.agent:2.2.5'
compile 'com.google.zxing:core:3.2.0'
compile 'com.joanzapata.android:android-iconify:1.0.9'
compile 'com.loopj.android:android-async-http:1.4.8'
}

上面的包都在哪呢?

在AndroidStudio中的"External Libraries"下有引用的library的列表, 选择某个library右键->"Library
Properties ..."就可以看到你引用的库本地的存放路径了, 如下图:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: