Android Studio项目适配AndroidX(Android 9.0)的方法步骤
说在前面:
老项目、大项目适配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为例
第一步:
新项目,这步可以跳过。
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,,一键转为 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
变为<androidx.constraintlayout.constraintlayout 这时你需要修改为
<androidx.constraintlayout.widget.constraintlayout |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Android实现 Shape属性gradient 渐变效果
下一篇: 互斥那点事儿(下)
推荐阅读
-
clipse项目迁移到android studio的方法(图文最新版)
-
Android studio项目代码与剪切板做对比的两种方法
-
Android Studio项目适配AndroidX(Android 9.0)的方法步骤
-
Android Studio项目中导入开源库的方法
-
取消Android Studio项目与SVN关联的方法
-
Android Studio4.0导入OpenCv4.3.0的方法步骤
-
android studio怎么创建项目? androidstudio的使用方法
-
android studio 迁移项目出现D:\Program\android\gradle-4.6-all.zip (系统找不到指定的路径。)的解决方法(超详细)
-
Android Studio如何查看源码并调试的方法步骤
-
Android Studio 在项目中引用第三方jar包的方法