android studio gradle dependencies 包存放在哪儿?

新手上路,请多包涵
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'
}

如上面的依赖中的包,比如com.loopj.android:android-async-http:1.4.8,存放在哪儿的?

compile fileTree 和 compile project我知道什么意思,而直接的compile是什么意思?

阅读 50.7k
4 个回答

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

~/.gradle 目录吧。

新手上路,请多包涵

你的Sdk目录/extras/android/m2repository/com/android/support/
比如:
你的Sdk目录/extras/android/m2repository/com/android/support/appcompat-v7/22.2.0

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
宣传栏