【Android】kotlin jdk版本冲突与Kotlin依赖管理插件

1、androidx.activity:activity:1.8.0 依赖版本错误问题

*依赖项“androidx.activity:activity:1.8.0”要求依赖它的库和应用针对版本 34 或更高版本 Android API 进行编译。:app 目前是针对 android-33 编译的。此外,Android Gradle 插件 7.3.0 的最大推荐编译 SDK 版本为 33。*

19 issues were found when checking AAR metadata:
​1.  Dependency 'androidx.activity:activity-ktx:1.8.0' requires libraries and applications thatdepend on it to compile against version 34 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Also, the maximum recommended compile SDK version for Android Gradleplugin 7.4.2 is 33.
​Recommended action: Update this project's version of the Android Gradleplugin to one that supports 34, then update this project to usecompileSdkVerion of at least 34.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​2.  Dependency 'androidx.activity:activity:1.8.0' requires libraries and applications thatdepend on it to compile against version 34 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Also, the maximum recommended compile SDK version for Android Gradleplugin 7.4.2 is 33.
​Recommended action: Update this project's version of the Android Gradleplugin to one that supports 34, then update this project to usecompileSdkVerion of at least 34.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​3.  Dependency 'androidx.savedstate:savedstate-ktx:1.2.1' requires libraries and applications thatdepend on it to compile against version 33 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Recommended action: Update this project to use a newer compileSdkVersionof at least 33, for example 33.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​4.  Dependency 'androidx.savedstate:savedstate:1.2.1' requires libraries and applications thatdepend on it to compile against version 33 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Recommended action: Update this project to use a newer compileSdkVersionof at least 33, for example 33.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​5.  Dependency 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1' requires libraries and applications thatdepend on it to compile against version 33 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Recommended action: Update this project to use a newer compileSdkVersionof at least 33, for example 33.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​6.  Dependency 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1' requires libraries and applications thatdepend on it to compile against version 33 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Recommended action: Update this project to use a newer compileSdkVersionof at least 33, for example 33.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).
​...................................
​19.  Dependency 'androidx.annotation:annotation-experimental:1.3.0' requires libraries and applications thatdepend on it to compile against version 33 or later of theAndroid APIs.
​:app is currently compiled against android-32.
​Recommended action: Update this project to use a newer compileSdkVersionof at least 33, for example 33.
​Note that updating a library or application's compileSdkVersion (whichallows newer APIs to be used) can be done separately from updatingtargetSdkVersion (which opts the app in to new runtime behavior) andminSdkVersion (which determines which devices the app can be installedon).

解决方式:升级编译后的sdk版本

compileSdktargetSdk 设置为34或者更高版本

以上内容已经解决了,您的问题,下面内容可忽略!!!

以上内容已经解决了,您的问题,下面内容可忽略!!!

以上内容已经解决了,您的问题,下面内容可忽略!!!

2、 Kotlin 相关依赖库的版本冲突问题

【Android】报错内容 Duplicate class kotlin.random.jdk8.PlatformThreadLocalRandom found in modules jetified-kotlin-stdlib-1.8.22 (org.jetbrains.kotlin:kotlin-stdlib:1.8.22) and jetified-kotlin-stdlib-jdk8-1.6.21 (org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.21)

解决方式:添加Kotlin依赖管理插件 platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")

implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))

项目中引入 Kotlin 的依赖管理插件。其中 platform("org.jetbrains.kotlin:kotlin-bom:1.8.0") 的作用是引入 Kotlin 的 Bill of Materials(BOM),简化了 Kotlin 相关库的版本管理。通过引入 BOM,可以统一管理 Kotlin 相关库的版本,避免版本冲突和简化依赖配置。这样在引入其他 Kotlin 相关库时,可以不指定版本号,直接使用BOM中指定的版本。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/44456.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

10个JavaScript One-Liners让初学者看起来很专业

原文链接:https://pinjarirehan.medium.com/10-javascript-one-liners-for-beginner-developers-to-look-pro-b9548353330a 原文作者:Rehan Pinjari 翻译:小圆 你是不是在辛苦码字时,看到别人轻松甩出一行 JavaScript 就搞定难题…

苹果笔记本电脑能玩哪些游戏 苹果电脑可以玩的单机游戏推荐

苹果笔记本有着优美的外观和强大的性能。用户不仅可以使用苹果笔记本办公、剪辑,越来越多的用户开始关注苹果笔记本在游戏领域的表现,尤其是在大型游戏方面。本文将为你详细介绍苹果笔记本都能玩什么游戏,以及为你推荐苹果电脑可以玩的单机游…

快到不可思议!Internet Download Manager下载器,让你的网速飞起来!

🌟 快到不可思议!Internet Download Manager下载器,让你的网速飞起来!🚀 嗨喽,各位csdn的朋友们!👋今天我要跟大家分享一个我超爱的下载神器——Internet Download Manager&#xff…

基于uni-app与图鸟UI的知识付费小程序模板

一、项目概述 在知识经济蓬勃发展的背景下,移动互联网成为知识传播与消费的重要渠道。本项目旨在利用前沿的前端技术栈——uni-app及高效UI框架图鸟UI,打造一款集多功能于一体的、面向广大求知者的知识付费平台移动端模板。该模板旨在简化开发流程&…

Java:分批查询

前言 最近遇到一个场景问题,就是基于SQL server数据库的规范,查询条件in如果个数超过2100个就会报错。由于是ORM映射框架采用的MybatisPlus 起初我想到的是基于 MybatisPlus 的 参数分割,测试还是不行,于是就直接基于 mybatis xm…

线性回归笔记

https://blog.51cto.com/u_16213589/7682076 残差图 多元回归-最小二乘法-残差分析笔记 一.多元线性回归模型的假设 我们需要进行以下六个假设,这些假设是经典的多元线性回归模型有效的前提: 1、因变量Y和自变量X1,X2,…&#…

BEV 之 LSS概要

1、 Lift 显示估计图像下采样(16倍)后的特征点深度,将2D图像提升到3D空间,得到图像特征的视锥(点云)。 根据图像和深度均分得到3D视锥索引 下采样16倍,得到特征图大小为 H x W, 每个特征点深…

机器视觉理论入门

文章目录 前言一、马尔视觉理论二、图形与图像三、图像基础名词总结 前言 Marr的视觉计算理论立足于计算机科学,系统地概括了心理物理学、神经生理学、临床神经病理学等方面已取得的所有重要成果,是迄今为止最为系统的视觉理论。Marr 的视觉计算理论虽然…

【论文速读】《面向深度学习的联合消息传递与自编码器》

这篇文章来自华为的渥太华无线先进系统能力中心和无线技术实验室,作者中有大名鼎鼎的童文。 一、自编码架构的全局收发机面临的主要问题 文章对我比较有启发的地方,是提到自编码架构的全局收发机面临的主要问题: 问题一:基于随…

洛杉矶裸机云大宽带服务器的特性和优势

洛杉矶裸机云大宽带服务器是结合了物理服务器性能和云服务灵活性的高性能计算服务,为用户提供高效、安全的计算和存储能力。在了解如何使用洛杉矶裸机云大宽带服务器之前,需要了解其基本特性和优势。以下是对洛杉矶裸机云大宽带服务器的具体分析&#xf…

使用lv虚拟卷扩展磁盘

使用centos演示。 首先创建centos虚拟机。链接:VMWARE安装Centos8,并且使用ssh连接虚拟机-CSDN博客 1. 增加磁盘。 选中要扩容的虚拟机,右键选择设置,然后点击磁盘,选择添加。 这里选择NVM的磁盘。选择这种磁盘是为了保持与之前…

笔试算法刷题

猿辅导2021校园招聘笔试(算法一) 牛客网 - 找工作神器|笔试题库|面试经验|实习招聘内推,求职就业一站解决_牛客网 (nowcoder.com) 第一眼看到这个题想到的是蓝桥杯飞机降落,贪心题。但是这样算的是最大不相交区间数量&#xff0…

Test-Time Adaptation via Conjugate Pseudo-labels--论文笔记

论文笔记 资料 1.代码地址 https://github.com/locuslab/tta_conjugate 2.论文地址 https://arxiv.org/abs/2207.09640 3.数据集地址 论文摘要的翻译 测试时间适应(TTA)指的是使神经网络适应分布变化,在测试时间仅访问来自新领域的未标记测试样本。以前的TT…

致远漏洞(登陆绕过+任意文件上传)

漏洞复现 1.获得cookie POST /seeyon/thirdpartyController.do HTTP/1.1 Host: 192.168.1.9 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0 Accept: text/html,application/xhtmlxml,application/xml;q0.9,*/*;q0.8 Accept-Langua…

uni-app三部曲之一: Pinia使用

1.引言 最近在学习移动端的开发,使用uni-app前端应用框架,通过学习B站的视频以及找了一个开发模板,终于是有了一些心得体会。 B站视频1:Day1-01-uni-app小兔鲜儿导学视频_哔哩哔哩_bilibili B站视频2:01-课程和uni的…

简述设计模式-策略模式

概述 在策略模式中一个类的行为或者算法可以在运行时更改,这种类型的设计模式属于行为型模式。 在策略模式中定义了一系列的算法和策略,并将每个算法封装在独立的类中,使得他们能够互相替换,通过使用策略模式可以在运行时选择不…

java 实现Comparable接口和实现Comparator接口排序的区别

Comparable接口 作用: Comparable接口是在类的内部实现的,用于指定类的默认比较规则。当一个类实现了Comparable接口时,它必须实现compareTo方法,该方法用于定义对象之间的自然顺序。 实现方式: 实现Comparable接口的…

洛谷P10716【MX-X1-T4】「KDOI-05」简单的字符串问题(扩展kmp+set+二分+扫描线树状数组)

题目 思路来源 小羊肖恩 题解 羊神这个做法tql,当时只是机械地写,过了之后再想想,才觉得确实是nb 先扩展kmp(Z函数)预处理出来数组,记z[i]为i往后可以和前缀匹配的最大长度 对于每个询问(p,cnt)&#x…

centOS79中安装nginx12.15

##red## 🔴 大家好,我是雄雄,欢迎关注微信公众号,雄雄的小课堂。 前言 装了这么多,发现Nginx是最简单的,一次性就搞定了。下面我们来看看如何安装 安装Nginx 安装gcc-c编译器 分开运行: yum…

anaconda安装pytorch

📚博客主页:knighthood2001 ✨公众号:认知up吧 (目前正在带领大家一起提升认知,感兴趣可以来围观一下) 🎃知识星球:【认知up吧|成长|副业】介绍 ❤️如遇文章付费,可先看…