Android studio 匯入依賴庫

wongstar發表於2018-01-23

用android studio new 一個demo時用到RecyclerView,先在xml中引入support v7包的RecyclerView,發現沒有找到對應的RecyclerView,然後研究了下需要匯入recyclerview-v7包

android studio新建工程的時候會匯入V7包,如下在build.gradle中加入recyclerview-v7包和support-v4包

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "demo.igeak.com.samplelist"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    buildToolsVersion '26.0.2'
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    implementation 'com.android.support:recyclerview-v7:27.0.0'
    implementation 'com.android.support:support-v4:27.0.0'
    implementation 'org.greenrobot:eventbus:3.1.1'
}
複製程式碼

但有時候我們根本不清楚所引用包具體包名和版本,那怎麼處理呢? Android studio提供了視覺化的操作,讓你更方便的引入你所需要的包,按下面步驟即可 第一步:

第一步@2x.png

第二步:

第二步@2x.png

加入Jar包依賴或加入Module依賴直接入上圖步驟三中選擇對應的選項即可。

第三步:

WX20171107-165015@2x.png

總結:通過視覺化方便我們進行配置,當然如果熟悉的話直接在build.gradle中寫對應的語法

相關文章