原文地址:http://www.reibang.com/p/7dc111353328
Google 2018 IO 大會(huì)推出了 Android新的擴(kuò)展庫 AndroidX,用于替換原來的 Android擴(kuò)展庫,將原來的android.*
替換成androidx.*
械拍;只有包名和Maven工件名受到影響浸策,原來的類名伸刃,方法名和字段名不會(huì)更改拢军。接下來我們來看看使用 AndroidX的擴(kuò)展庫需要哪些配置。
1. AndroidX變化
1)常用依賴庫對比:
Old build artifact | AndroidX build artifact |
---|---|
com.android.support:appcompat-v7:28.0.2 |
androidx.appcompat:appcompat:1.0.0 |
com.android.support:design:28.0.2 |
com.google.android.material:material:1.0.0 |
com.android.support:support-v4:28.0.2 |
androidx.legacy:legacy-support-v4:1.0.0 |
com.android.support:recyclerview-v7:28.0.2 |
androidx.recyclerview:recyclerview:1.0.0 |
com.android.support.constraint:constraint-layout:1.1.2 |
androidx.constraintlayout:constraintlayout:1.1.2 |
更多詳細(xì)變化內(nèi)容送巡,可以下載CSV格式映射文件摹菠;
2)常用支持庫類對比:
Support Library class | AndroidX class |
---|---|
android.support.v4.app.Fragment |
androidx.fragment.app.Fragment |
android.support.v4.app.FragmentActivity |
androidx.fragment.app.FragmentActivity |
android.support.v7.app.AppCompatActivity |
androidx.appcompat.app.AppCompatActivity |
android.support.v7.app.ActionBar |
androidx.appcompat.app.ActionBar |
android.support.v7.widget.RecyclerView |
androidx.recyclerview.widget.RecyclerView |
更多詳細(xì)變化內(nèi)容,可以下載CSV格式映射文件骗爆。
2. AndroidX配置
1)更新升級插件
- 將AS更新至 AS 3.2及以上次氨;
- Gradle 插件版本改為 4.6及以上;
項(xiàng)目下gradle/wrapper/gradle-wrapper.propertie
文件中的distributionUrl
改為:
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
- compileSdkVersion 版本升級到 28及以上摘投;
- buildToolsVersion 版本改為 28.0.2及以上煮寡。
2)開啟遷移AndroidX
?在項(xiàng)目的gradle.properties
文件里添加如下配置:
android.useAndroidX=true
android.enableJetifier=true
表示項(xiàng)目啟用 AndroidX 并遷移到 AndroidX。
3)替換依賴庫
?修改項(xiàng)目app目錄下的build.gradle
依賴庫:
implementation 'com.android.support:appcompat-v7:28.0.2' → implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.android.support:design:28.0.2' → implementation 'com.google.android.material:material:1.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.2' → implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
...
4)修改支持庫類
?將原來import
的android.**
包刪除犀呼,重新import
新的androidx.**
包幸撕;
import android.support.v7.app.AppCompatActivity; → import androidx.appcompat.app.AppCompatActivity;
5)一鍵遷移AndroidX庫
?AS 3.2 及以上版本提供了更加方便快捷的方法一鍵遷移到 AndroidX。選擇菜單上的ReFactor —— Migrate to AndroidX... 即可外臂。(如果遷移失敗坐儿,就需要重復(fù)上面1,2宋光,3貌矿,4步手動(dòng)去修改遷移)
注意:如果你的項(xiàng)目compileSdkVersion 低于28,點(diǎn)擊Refactor to AndroidX...會(huì)提示:
You need to have at least have compileSdk 28 set in your module build.gradle to refactor to androidx
提示讓你使用不低于28的sdk罪佳,升級最新到SDK逛漫,然后點(diǎn)擊 Migrate to AndroidX...,AS就會(huì)自動(dòng)將項(xiàng)目重構(gòu)并使用AndroidX庫菇民。
3. AndroidX影響
雖然說目前對我們沒有多大影響尽楔,我們可以不使用仍然使用舊版本的支持庫,畢竟沒有強(qiáng)制第练,但長遠(yuǎn)來看還是有好處的阔馋。AndroidX重新設(shè)計(jì)了包結(jié)構(gòu),旨在鼓勵(lì)庫的小型化娇掏,支持庫和架構(gòu)組件包的名字也都簡化了呕寝;而且也是減輕Android生態(tài)系統(tǒng)碎片化的有效方式。