AndroidStudio打包失败Error: Google Play requires that apps target API level 31 or higher.解决办法

这篇具有很好参考价值的文章主要介绍了AndroidStudio打包失败Error: Google Play requires that apps target API level 31 or higher.解决办法。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

这个问题是Android Studio和SDK升级后出现的,在打包apk时会出现报错。

首先找到build.gradle文件

在targetSdkVersion上面加一行注释:

//noinspection ExpiredTargetSdkVersion

然后在Android{}块中加入 

lintOptions {
    abortOnError false
}

以下为完整代码图

google play requires that apps target api level 33 or higher.,java

再次打包就ok了文章来源地址https://www.toymoban.com/news/detail-850800.html

到了这里,关于AndroidStudio打包失败Error: Google Play requires that apps target API level 31 or higher.解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • ERROR: Could not find a version that satisfies the requirement

    报错提示: ERROR: Could not find a version that satisfies the requirement numpy (from versions: none) ERROR: No matching distribution found for numpy ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2 [notice] A new release of pip is available: 23.0.1 - 23.1.2 [notice] T

    2024年02月14日
    浏览(56)
  • 解决SpringBoot启动失败:A component required a bean of type ‘xxxxxxx‘ that could not be found.

    今天写了一个MD5加密加盐工具类,运用到实际业务代码中缺报错了,内容如下: 根据错误日志不难发现,其实是因为组件没有被找到。因为这个工具类是我自己写的。 然后我就去检查代码,最终发现,我把这个工具类以注解的形式注入进来并使用 但是,这个工具类里面,我

    2024年02月20日
    浏览(45)
  • ERROR: Could not find a version that satisfies the requirement torch==1.8.1+cu111

    问题描述:我在配置环境时,使用pytorch官网上的命令安装torcch时,出现了pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -f https://download.pytorch.org/whl/torch_stable.html这个错误。 ERROR: Could not find a version that satisfies the requirement torch==1.8.1+cu111 (from versions: none) ERROR: No matchi

    2024年02月12日
    浏览(46)
  • 安装Pytorch时出现ERROR: Could not find a version that satisfies the requirement...的解决方法

    当我们创建了一个虚拟环境,在环境中使用pip命令安装Pytorch时经常会出现以下错误: 下面罗列几种有用的解决方法: 1.切换网络 出现这种问题很可能是因为网络太卡导致无法从该路径获取到需要下载的文件,建议先切换网络再运行一遍Pytorch的安装命令。 2.安装wheel (需要先

    2024年02月02日
    浏览(137)
  • 已解决stderr: ERROR: Could not find a version that satisfies the requirement gradio==3.23

    已解决stderr: ERROR: Could not find a version that satisfies the requirement gradio==3.23 ERROR: No matching distribution found for gradio==3.23 粉丝群里面的一个小伙伴遇到问题跑来私信我,想用pip安装gradio,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录

    2023年04月17日
    浏览(61)
  • 解决 ERROR: Could not find a version that satisfies the requirement torch==1.10.0+cu102

    笔者的问题不是网络问题 python版本:3.10 本机CUDA版本:10.2 OS:Windows10 下载torch时报错: python3.10目前在pytorch提供的库中根本没有对应的windows10环境的torch库 https://download.pytorch.org/whl/torch 注:cu代表CUDA版本,cp代表python版本 安装python3.8,注意添加环境变量 然后以管理员身份打

    2024年02月02日
    浏览(89)
  • python安装matplotlib包报错:ERROR: Could not find a version that satisfies the requirement matplotlib

    一个项目需要用到matplotlib包,但是发现之前没有安装过,故习惯性按照如下方法尝试安装 file-setting-project:项目名python interpreter-搜索 matplotlib-install-报错 ERROR: Could not find a version that satisfies the requirement matplotlib (from versions: none)ERROR 结果报错版本不匹配。。下面开始找解决方法

    2024年02月08日
    浏览(95)
  • 如何解决Python pip的版本匹配错误:ERROR: Could not find a version that satisfies the requirement

    博主猫头虎的技术世界 🌟 欢迎来到猫头虎的博客 — 探索技术的无限可能! 专栏链接 : 🔗 精选专栏 : 《面试题大全》 — 面试准备的宝典! 《IDEA开发秘籍》 — 提升你的IDEA技能! 《100天精通鸿蒙》 — 从Web/安卓到鸿蒙大师! 《100天精通Golang(基础入门篇)》 — 踏入

    2024年04月16日
    浏览(62)
  • Python安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法

    我们在使用 pip 安装 python 包时,经常会出现如下错误: 找了很久终于找到能解决这种报错的方法了。 直接选用pip源并且信任它的来源就可以解决这种问题。 上面使用了豆瓣源,将其换成清华源、阿里源等都适用。 清华源: Simple Index

    2024年02月11日
    浏览(58)
  • ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)

      “当我年轻的时候,我想变成任何一个人除了我自己。”     🎯作者主页: 追光者♂🔥          🌸个人简介:   💖[1] 计算机专业硕士研究生💖   🌿[2] 2023年城市之星领跑者TOP1(哈尔滨)🌿   🌟[3] 2022年度博客之星人工智能领域TOP4🌟   🏅[4] 阿里云社区特邀专家

    2024年02月12日
    浏览(69)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包