欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來(lái)到入門教程網(wǎng)!

Android

當(dāng)前位置:主頁(yè) > 軟件編程 > Android >

Android Studio項(xiàng)目適配AndroidX(Android 9.0)的方法步驟

來(lái)源:本站原創(chuàng)|時(shí)間:2020-01-10|欄目:Android|點(diǎn)擊: 次

說(shuō)在前面:

老項(xiàng)目、大項(xiàng)目適配Android X 注意了,一定要謹(jǐn)慎、謹(jǐn)慎、再謹(jǐn)慎。項(xiàng)目中用到的第三方庫(kù)多的話會(huì)很麻煩,有些第三方庫(kù)還沒(méi)有適配Android X。

適配Android X的兩種情況:一種是老項(xiàng)目適配Android X ,另外一種是新項(xiàng)目要求適配Android 9.0

硬核要求

Android studio 版本升級(jí)到3.2.0 以上的版本,
distributionUrl的版本升級(jí)為 4.10.1以上
targetSdkVersion 28
gradle 插件的版本升級(jí)為 3.2.0以上

classpath 'com.android.tools.build:gradle:3.2.0'

這里以AS 3.4為例


第一步:

新項(xiàng)目,這步可以跳過(guò)。

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

注意:如果是老項(xiàng)目適配AndroidX,沒(méi)有找到ConstraintLayout 的話,那么還需要在中添加如下代碼

dependencies {
   implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}

第四步之后,
<android.support.constraint.ConstraintLayout
變?yōu)?lt;androidx.constraintlayout.ConstraintLayout 這時(shí)你需要修改為
<androidx.constraintlayout.widget.ConstraintLayout |

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。

上一篇:Android使用美團(tuán)多渠道打包方案詳解

欄    目:Android

下一篇:Android實(shí)現(xiàn)折線走勢(shì)圖

本文標(biāo)題:Android Studio項(xiàng)目適配AndroidX(Android 9.0)的方法步驟

本文地址:http://mengdiqiu.com.cn/a1/Android/9066.html

網(wǎng)頁(yè)制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語(yǔ)言數(shù)據(jù)庫(kù)服務(wù)器

如果侵犯了您的權(quán)利,請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有