亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-08-29 08:42:11 來源:腳本之家 閱讀:564 作者:小紅妹 欄目:移動開發

說在前面:

老項目、大項目適配Android X 注意了,一定要謹慎、謹慎、再謹慎。項目中用到的第三方庫多的話會很麻煩,有些第三方庫還沒有適配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為例

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

第一步:

新項目,這步可以跳過。

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項目適配AndroidX(Android 9.0)的方法步驟

第四步:

Android Studio ----> Refactor----> Migrate to androidx,,一鍵轉為 androidX

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

第五步:

支持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 的話,那么還需要在Android Studio項目適配AndroidX(Android 9.0)的方法步驟中添加如下代碼

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

第四步之后,
<android.support.constraint.ConstraintLayout
變為<androidx.constraintlayout.ConstraintLayout 這時你需要修改為
<androidx.constraintlayout.widget.ConstraintLayout |

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

若羌县| 靖州| 安图县| 大竹县| 万源市| 两当县| 施甸县| 图木舒克市| 石阡县| 陆川县| 万载县| 凉城县| 施甸县| 长兴县| 明水县| 咸阳市| 政和县| 景泰县| 梓潼县| 达拉特旗| 堆龙德庆县| 光山县| 玉龙| 永春县| 鄂州市| 城市| 西乌珠穆沁旗| 根河市| 桐乡市| 集安市| 苍溪县| 岳阳县| 社旗县| 湖北省| 淅川县| 公安县| 文成县| 张北县| 冕宁县| 海阳市| 和林格尔县|