Android Studio項目適配AndroidX(Android 9.0)的方法步驟
說在前面:
老項目、大項目適配Android X 注意了,一定要謹(jǐn)慎、謹(jǐn)慎、再謹(jǐn)慎。項目中用到的第三方庫多的話會很麻煩,有些第三方庫還沒有適配Android X。
適配Android X的兩種情況:一種是老項目適配Android X ,另外一種是新項目要求適配Android 9.0
硬核要求
Android studio 版本升級到3.2.0 以上的版本,
distributionUrl的版本升級為 4.10.1以上
targetSdkVersion 28
gradle 插件的版本升級為 3.2.0以上
classpath 'com.android.tools.build:gradle:3.2.0'
這里以AS 3.4為例

第一步:
新項目,這步可以跳過。
compileSdkVersion 28
defaultConfig {
applicationId "gangqing.pu.xmxidaq"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
第二步:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:10.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
第三步:
在gradle.properties 中加入如下代碼,表示支持Android X
android.useAndroidX=true android.enableJetifier=true

第四步:
Android Studio ----> Refactor----> Migrate to androidx,,一鍵轉(zhuǎn)為 androidX

第五步:
支持Java 1.8
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
第六步:
修改布局,比如:ConstraintLayout
| 變化之前 | AndroidX |
|---|---|
| <android.support.constraint.ConstraintLayout | <androidx.constraintlayout.widget.ConstraintLayout |
注意:如果是老項目適配AndroidX,沒有找到ConstraintLayout 的話,那么還需要在
中添加如下代碼
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}
第四步之后,
<android.support.constraint.ConstraintLayout
變?yōu)?lt;androidx.constraintlayout.ConstraintLayout 這時你需要修改為
<androidx.constraintlayout.widget.ConstraintLayout |
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android ViewPager實(shí)現(xiàn)選項卡切換
這篇文章主要介紹了Android ViewPager實(shí)現(xiàn)選項卡切換,詳細(xì)分析了ViewPager實(shí)現(xiàn)選項卡切換功能,感興趣的小伙伴們可以參考一下2016-02-02
Android 進(jìn)度條按鈕ProgressButton的實(shí)現(xiàn)代碼
這篇文章主要介紹了Android 進(jìn)度條按鈕實(shí)現(xiàn)(ProgressButton)代碼,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價值 ,需要的朋友可以參考下2018-10-10
解決Android 10/Android Q手機(jī)在后臺無法正常定位問題
這篇文章主要介紹了解決Android 10/Android Q手機(jī)在后臺無法正常定位問題,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-11-11
Android 判斷ip地址合法實(shí)現(xiàn)代碼
這篇文章主要介紹了Android 判斷ip地址合法實(shí)現(xiàn)代碼的相關(guān)資料,需要的朋友可以參考下2017-06-06
詳解android在mob平臺實(shí)現(xiàn)qq登陸和分享
這篇文章主要介紹了詳解android在mob平臺實(shí)現(xiàn)qq登陸和分享,對接入第三方平臺SDK感興趣的同學(xué)們,可以參考下2021-04-04

