时间:2021-05-21
gradle.properties文件中添加
android.useAndroidX=false #禁用AndroidX
android.enableJetifier=false #禁止第三方jar包使用androidX
补充知识:解决Android Studio androidx 包冲突问题
如果包冲突了会包如下这样的错:
Android dependency 'androidx.core:core' has different version for the compile (1.0.0) and runtime (1.0.1) classpath. You should manually set the same version via DependencyResolution
1.打开Terminal
输入:
./gradlew -q app:dependencies
查看依赖冲突文件
2.在build.gradle里buildscript标签下添加
subprojects { project.configurations.all { resolutionStrategy.eachDependency { details -> if (details.requested.group == 'com.android.support' && !details.requested.name.contains('multidex') ) { details.useVersion "27.1.1" } if (details.requested.group == 'androidx.core' && !details.requested.name.contains('androidx') ) { } } } }某个包冲突 就 在group androidx.core 并且指定Androidx 要用的版本
以上这篇Android studio 禁用AndroidX方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
google的更新优化往往会牵动一大批开发者的心。去年的androidx,到今年studio3.5后都默认使用androidx了。其实对于我们开发者而言,我们都
下载地址如下:https://developer.android.com/sdk/installing/studio.html很显然的IntelliJIDEA的
前提条件介绍1.android-studio-3.6.1死丢丢配置了dart和flutter插件在3.5.3时成功运行过flutter工程2.flutter版本
1、首先下载Androidstudio安装包,可以从http://www.android-studio.org/下载最新版本,这里采用3.5.2版本进行演示,安
Androidx86是什么?安卓(Android)x86是安装在Intel/AMD等PC平台上的安卓系统,也就是说不用安卓虚拟机你也在电脑上玩安卓软件和游戏了,