Androidx初嘗及其新舊包對照表

x的最低實驗條件

AndroidStudio 3.2.0+
gradle:gradle-4.6以上
compileSdkVersion 28
本次實驗條件:
AndroidStudio 3.3 (AS3.3強制要求最低gradle版本為gradle-4.10-all)
gradle:gradle-4.10-all

使用AndroidX

如果要在新項目中使用AndroidX凫佛,則需要將compile SDK設(shè)置為Android 9.0(API級別28)或更高版本严拒,并在gradle.properties文件中設(shè)置以下兩個Android Gradle插件標(biāo)志霜幼。

  • android.useAndroidX:設(shè)置true為時,Android插件使用相應(yīng)的AndroidX庫而不是支持庫。如果未指定,則默認(rèn)情況下為false標(biāo)志 甥绿。
  • android.enableJetifier:設(shè)置true為時,Android插件會自動遷移現(xiàn)有的第三方庫,通過重寫其二進(jìn)制文件來使用AndroidX。如果未指定沫勿,則默認(rèn)情況下為false標(biāo)志除盏。

AndroidX概述

AndroidX是Android團(tuán)隊用于在Jetpack中開發(fā)薛窥,測試胖烛,打包,發(fā)布和發(fā)布庫的開源項目 诅迷。
AndroidX是對原始Android 支持庫的重大改進(jìn) 洪己。與支持庫一樣,AndroidX與Android操作系統(tǒng)分開提供竟贯,并提供跨Android版本的向后兼容性答捕。AndroidX通過提供功能奇偶校驗和新庫完全取代了支持庫。此外屑那,AndroidX還包括以下功能:

  • AndroidX中的所有軟件包都以字符串開頭拱镐,位于一致的命名空間androidx中。支持庫包已映射到相應(yīng)的androidx.*包中持际。有關(guān)所有舊類和構(gòu)建工件的完整映射到新構(gòu)件沃琅,請參閱“ 包重構(gòu)”頁面。
  • 與支持庫不同蜘欲,AndroidX軟件包是單獨維護(hù)和更新的益眉。這些androidx包使用嚴(yán)格的語義版本控制, 從版本1.0.0開始姥份。您可以單獨更新項目中的AndroidX庫郭脂。
  • 所有新的支持庫開發(fā)都將在AndroidX庫中進(jìn)行。這包括維護(hù)原始支持庫工件和引入新的Jetpack組件澈歉。

其實就是對安卓過往v7,v4展鸡,design等系列包的一個整合,不用我們多次添加與核對版本號埃难,大大方便了我們的開發(fā)莹弊,真的是早就該這樣做了涤久。

開始體驗x

新建工程有個勾,勾上


9009142-a40dec2d6e24896a.png

創(chuàng)建完成后就會發(fā)現(xiàn)gradle.properties多了兩行

image.png

這兩行的作用主要是自動遷移任何尚未遷移到AndroidX命名空間的Maven依賴項目至AndroidX命名空間忍弛,如果是老項目現(xiàn)在想把整個工程其它包替換為androidx包响迂,在手動添加上面這兩行后直接使用AS Refactor->Migrate to AndroidX即可。
9009142-d115fb56cc4f8111.png

這個時候由于我本地還沒有androix這個庫,新建工程時的這兩個在線引用
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

也沒有引起AS給我自動下載下來androidx整個包细疚,感覺很奇怪蔗彤,就去官網(wǎng)隨便找了一個對應(yīng)的一個依賴,在線一填惠昔,導(dǎo)致它x包所有東西都下載下來了幕与,一切回歸正常挑势,在xml和java文件寫了好幾個以前分布在不同的包的類镇防,沒發(fā)現(xiàn)什么問題,至此體驗結(jié)束潮饱。
功臣包名:implementation 'com.google.android.material:material:1.0.0-rc01'

舊版本包與AndroidX對照表
舊包 AndroidX
android.arch.core:common androidx.arch.core:core-common:2.0.0-rc01
android.arch.core:core androidx.arch.core:core:2.0.0-rc01
android.arch.core:core-testing androidx.arch.core:core-testing:2.0.0-rc01
android.arch.core:runtime androidx.arch.core:core-runtime:2.0.0-rc01
android.arch.lifecycle:common androidx.lifecycle:lifecycle-common:2.0.0-rc01
android.arch.lifecycle:common-java8 androidx.lifecycle:lifecycle-common-java8:2.0.0-rc01
android.arch.lifecycle:compiler androidx.lifecycle:lifecycle-compiler:2.0.0-rc01
android.arch.lifecycle:extensions androidx.lifecycle:lifecycle-extensions:2.0.0-rc01
android.arch.lifecycle:livedata androidx.lifecycle:lifecycle-livedata:2.0.0-rc01
android.arch.lifecycle:livedata-core androidx.lifecycle:lifecycle-livedata-core:2.0.0-rc01
android.arch.lifecycle:reactivestreams androidx.lifecycle:lifecycle-reactivestreams:2.0.0-rc01
android.arch.lifecycle:runtime androidx.lifecycle:lifecycle-runtime:2.0.0-rc01
android.arch.lifecycle:viewmodel androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01
android.arch.paging:common androidx.paging:paging-common:2.0.0-rc01
android.arch.paging:runtime androidx.paging:paging-runtime:2.0.0-rc01
android.arch.paging:rxjava2 androidx.paging:paging-rxjava2:2.0.0-rc01
android.arch.persistence.room:common androidx.room:room-common:2.0.0-rc01
android.arch.persistence.room:compiler androidx.room:room-compiler:2.0.0-rc01
android.arch.persistence.room:guava androidx.room:room-guava:2.0.0-rc01
android.arch.persistence.room:migration androidx.room:room-migration:2.0.0-rc01
android.arch.persistence.room:runtime androidx.room:room-runtime:2.0.0-rc01
android.arch.persistence.room:rxjava2 androidx.room:room-rxjava2:2.0.0-rc01
android.arch.persistence.room:testing androidx.room:room-testing:2.0.0-rc01
android.arch.persistence:db androidx.sqlite:sqlite:2.0.0-rc01
android.arch.persistence:db-framework androidx.sqlite:sqlite-framework:2.0.0-rc01
com.android.support.constraint:constraint-layout androidx.constraintlayout:constraintlayout:1.1.2
com.android.support.constraint:constraint-layout-solver androidx.constraintlayout:constraintlayout-solver:1.1.2
com.android.support.test.espresso.idling:idling-concurrent androidx.test.espresso.idling:idling-concurrent:3.1.0
com.android.support.test.espresso.idling:idling-net androidx.test.espresso.idling:idling-net:3.1.0
com.android.support.test.espresso:espresso-accessibility androidx.test.espresso:espresso-accessibility:3.1.0
com.android.support.test.espresso:espresso-contrib androidx.test.espresso:espresso-contrib:3.1.0
com.android.support.test.espresso:espresso-core androidx.test.espresso:espresso-core:3.1.0
com.android.support.test.espresso:espresso-idling-resource androidx.test.espresso:espresso-idling-resource:3.1.0
com.android.support.test.espresso:espresso-intents androidx.test.espresso:espresso-intents:3.1.0
com.android.support.test.espresso:espresso-remote androidx.test.espresso:espresso-remote:3.1.0
com.android.support.test.espresso:espresso-web androidx.test.espresso:espresso-web:3.1.0
com.android.support.test.janktesthelper:janktesthelper androidx.test.jank:janktesthelper:1.0.1
com.android.support.test.services:test-services androidx.test:test-services:1.1.0
com.android.support.test.uiautomator:uiautomator androidx.test.uiautomator:uiautomator:2.2.0
com.android.support.test:monitor androidx.test:monitor:1.1.0
com.android.support.test:orchestrator androidx.test:orchestrator:1.1.0
com.android.support.test:rules androidx.test:rules:1.1.0
com.android.support.test:runner androidx.test:runner:1.1.0
com.android.support:animated-vector-drawable androidx.vectordrawable:vectordrawable-animated:1.0.0
com.android.support:appcompat-v7 androidx.appcompat:appcompat:1.2.0
com.android.support:asynclayoutinflater androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
com.android.support:car androidx.car:car:1.0.0-alpha5
com.android.support:cardview-v7 androidx.cardview:cardview:1.0.0
com.android.support:collections androidx.collection:collection:1.0.0
com.android.support:coordinatorlayout androidx.coordinatorlayout:coordinatorlayout:1.0.0
com.android.support:cursoradapter androidx.cursoradapter:cursoradapter:1.0.0
com.android.support:customtabs androidx.browser:browser:1.0.0
com.android.support:customview androidx.customview:customview:1.0.0
com.android.support:design com.google.android.material:material:1.0.0-rc01
com.android.support:documentfile androidx.documentfile:documentfile:1.0.0
com.android.support:drawerlayout androidx.drawerlayout:drawerlayout:1.0.0
com.android.support:exifinterface androidx.exifinterface:exifinterface:1.0.0
com.android.support:gridlayout-v7 androidx.gridlayout:gridlayout:1.0.0
com.android.support:heifwriter androidx.heifwriter:heifwriter:1.0.0
com.android.support:interpolator androidx.interpolator:interpolator:1.0.0
com.android.support:leanback-v17 androidx.leanback:leanback:1.0.0
com.android.support:loader androidx.loader:loader:1.0.0
com.android.support:localbroadcastmanager androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
com.android.support:media2 androidx.media2:media2:1.0.0-alpha03
com.android.support:media2-exoplayer androidx.media2:media2-exoplayer:1.0.0-alpha01
com.android.support:mediarouter-v7 androidx.mediarouter:mediarouter:1.0.0
com.android.support:multidex androidx.multidex:multidex:2.0.0
com.android.support:multidex-instrumentation androidx.multidex:multidex-instrumentation:2.0.0
com.android.support:palette-v7 androidx.palette:palette:1.0.0
com.android.support:percent androidx.percentlayout:percentlayout:1.0.0
com.android.support:preference-leanback-v17 androidx.leanback:leanback-preference:1.0.0
com.android.support:preference-v14 androidx.legacy:legacy-preference-v14:1.0.0
com.android.support:preference-v7 androidx.preference:preference:1.0.0
com.android.support:print androidx.print:print:1.0.0
com.android.support:recommendation androidx.recommendation:recommendation:1.0.0
com.android.support:recyclerview-selection androidx.recyclerview:recyclerview-selection:1.0.0
com.android.support:recyclerview-v7 androidx.recyclerview:recyclerview:1.0.0
com.android.support:slices-builders androidx.slice:slice-builders:1.0.0
com.android.support:slices-core androidx.slice:slice-core:1.0.0
com.android.support:slices-view androidx.slice:slice-view:1.0.0
com.android.support:slidingpanelayout androidx.slidingpanelayout:slidingpanelayout:1.0.0
com.android.support:support-annotations androidx.annotation:annotation:1.0.0
com.android.support:support-compat androidx.core:core:1.0.0
com.android.support:support-content androidx.contentpager:contentpager:1.0.0
com.android.support:support-core-ui androidx.legacy:legacy-support-core-ui:1.0.0
com.android.support:support-core-utils androidx.legacy:legacy-support-core-utils:1.0.0
com.android.support:support-dynamic-animation androidx.dynamicanimation:dynamicanimation:1.0.0
com.android.support:support-emoji androidx.emoji:emoji:1.0.0
com.android.support:support-emoji-appcompat androidx.emoji:emoji-appcompat:1.0.0
com.android.support:support-emoji-bundled androidx.emoji:emoji-bundled:1.0.0
com.android.support:support-fragment androidx.fragment:fragment:1.0.0
com.android.support:support-media-compat androidx.media:media:1.0.0
com.android.support:support-tv-provider androidx.tvprovider:tvprovider:1.0.0
com.android.support:support-v13 androidx.legacy:legacy-support-v13:1.0.0
com.android.support:support-v4 androidx.legacy:legacy-support-v4:1.0.0
com.android.support:support-vector-drawable androidx.vectordrawable:vectordrawable:1.0.0
com.android.support:swiperefreshlayout androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
com.android.support:textclassifier androidx.textclassifier:textclassifier:1.0.0
com.android.support:transition androidx.transition:transition:1.0.0
com.android.support:versionedparcelable androidx.versionedparcelable:versionedparcelable:1.0.0
com.android.support:viewpager androidx.viewpager:viewpager

:1.0.0
|com.android.support:wear |androidx.wear:wear:1.0.0
|com.android.support:webkit |androidx.webkit:webkit:1.0.0

參考文章:
【google官方】androix包
【google官方】現(xiàn)有項目遷移教程

image

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末来氧,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子香拉,更是在濱河造成了極大的恐慌啦扬,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件凫碌,死亡現(xiàn)場離奇詭異扑毡,居然都是意外死亡,警方通過查閱死者的電腦和手機盛险,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門瞄摊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人苦掘,你說我怎么就攤上這事换帜。” “怎么了鹤啡?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵惯驼,是天一觀的道長。 經(jīng)常有香客問我递瑰,道長祟牲,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任抖部,我火速辦了婚禮疲眷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘您朽。我一直安慰自己狂丝,他們只是感情好换淆,可當(dāng)我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著几颜,像睡著了一般倍试。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上蛋哭,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天县习,我揣著相機與錄音,去河邊找鬼谆趾。 笑死躁愿,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的沪蓬。 我是一名探鬼主播彤钟,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼跷叉!你這毒婦竟也來了逸雹?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤云挟,失蹤者是張志新(化名)和其女友劉穎梆砸,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體园欣,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡帖世,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了沸枯。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片日矫。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖辉饱,靈堂內(nèi)的尸體忽然破棺而出祭往,到底是詐尸還是另有隱情荤牍,我是刑警寧澤,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站漆枚,受9級特大地震影響篓足,放射性物質(zhì)發(fā)生泄漏操灿。R本人自食惡果不足惜配乱,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望于毙。 院中可真熱鬧敦冬,春花似錦、人聲如沸唯沮。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至萌庆,卻和暖如春溶褪,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背践险。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工猿妈, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人巍虫。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓彭则,卻偏偏與公主長得像,于是被迫代替她去往敵國和親占遥。 傳聞我的和親對象是個殘疾皇子俯抖,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,916評論 2 344