Android Studio 使用教程(二十九)之Android Studio 查看本地添加依赖库的代码

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_37730482/article/details/80938509

Android Studio 中配置依赖 如下


dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation files('libs/android-json-rpc-0.3.4.jar')
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    implementation files('libs/universal-image-loader-1.8.5.jar')
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
}


那么怎么查看依赖的代码呢 比如 现在想看glide:3.7.0的代码


步骤如下:


1.AndroidStudio切换到【Project




2.打开【External Libraries】





3.选择 你想看的包 比如Glide



猜你喜欢

转载自blog.csdn.net/weixin_37730482/article/details/80938509