首页 > 其他分享 >Flutter 3.24 构建 release 抛出部分依赖 AAPT: error: resource android:attr/lStar not found. 的问题解决

Flutter 3.24 构建 release 抛出部分依赖 AAPT: error: resource android:attr/lStar not found. 的问题解决

时间:2024-09-09 14:06:00浏览次数:8  
标签:lStar 插件 resource attr compileSdkVersion 34 android targetSdkVersion Android

问题截图:
image

一些讨论:
https://github.com/transistorsoft/flutter_background_fetch/issues/369

问题原因及解决方案:
@Aziz-T

该问题与插件的 compileSdkVersion 和 targetSdkVersion 有关。出现该问题的原因是部分插件的 compileSdkVersion 和 targetSdkVersion 版本过旧。请前往您项目中的插件源文件,将 compileSdkVersion 和 targetSdkVersion 版本设置为与您的项目一致(兼容 34 版),或者在项目目录下的 build.gradle 文件中添加以下代码块。

subprojects { afterEvaluate { android { compileSdkVersion 34 } } }

此代码是 Android 项目中使用的 Gradle 配置脚本。subprojects 块允许您为项目中的所有子项目(模块)配置某些设置。里面的 android 块定义了与 Android 相关的配置设置,compileSdkVersion 34 行允许使用 Android API 34 编译项目。

image

标签:lStar,插件,resource,attr,compileSdkVersion,34,android,targetSdkVersion,Android
From: https://www.cnblogs.com/fanqisoft/p/18404410

相关文章

  • Python 错误 AttributeError 解析,实际错误实例详解
    文章目录前言Python错误AttributeError:_csv.readerobjectHasNoAttributeNext修复Python中的AttributeError:'_csv.reader'objecthasnoattribute'next'错误Python错误AttributeError:‘_io.TextIOWrapper‘objectHasNoAttribute‘Sp......
  • Spring 注解 @Resource 和 @Autowired 区别对比
    原文:Spring注解@Resource和@Autowired区别对比@Resource和@Autowired都是做bean的注入时使用,其实@Resource并不是Spring的注解,它的包是javax.annotation.Resource,需要导入,但是Spring支持该注解的注入。共同点两者都可以写在字段和setter方法上。两者如果......
  • C#特性(Attribute)
    特性(Attribute)是用于在运行时传递程序中各种元素(比如类,方法,结构,枚举,组件等)的行为信息的声明性标签.可以通过使用特性向程序添加声明性信息.一个声明性标签是通过放置在它所应用的元素前面的方括号[]来描述的.特性(Attribute)用于添加元数据,如编译器指令和注释,描述,......
  • Why I‘m getting 404 Resource Not Found to my newly Azure OpenAI deployment?
    题意:为什么我新部署的AzureOpenAI服务会出现404资源未找到的错误?问题背景:I'vegonethroughthis quickstart andIcreatedmyAzureOpenAIresource+createdamodeldeploymentwhichisinstatesucceedded.Ialsoplayarounditin AzureOpenAIStudio-Mi......
  • 解决在.net8 WebAPI中 AOP 使用AbstractInterceptorAttribute
    在网上找了许多例子但是放在.net8就不好使了比如在Program中配置IInterceptor或者 services.ConfigureDynamicProxy,网上说的对但是也不全对//通过单元测试(MSTest)//创建IServiceCollectionIServiceCollectionservices=newServiceCollection(); 是能调用Abstr......
  • C# HttpUtility.HtmlAttributeEncode 改用 js 实现
    System.Web.HttpUtility.HtmlAttributeEncode()的实现privatestaticvoidHtmlAttributeEncodeInternal(stringvalue,HttpWriterwriter){intindex=HttpEncoder.IndexOfHtmlAttributeEncodingChars(value,0);if(index==-1){write......
  • Spring 6 资源Resources 相关操作
    Java全能学习+面试指南:https://javaxiaobear.cn1、SpringResources概述Java的标准java.net.URL类和各种URL前缀的标准处理程序无法满足所有对low-level资源的访问,比如:没有标准化的URL实现可用于访问需要从类路径或相对于ServletContext获取的资源。并且缺少某些Spring所需要的......
  • 【已解决】Invalid value type for attribute ‘factoryBeanObjectType‘: java.lang.
    一、问题描述Invalidvaluetypeforattribute‘factoryBeanObjectType‘:java.lang.String二、解决方案更新本地的Mybatisplus版本<dependency>  <groupId>com.baomidou</groupId>  <artifactId>mybatis-plus-spring-boot3-starter</artifactId> ......
  • 论文阅读01-Improving Closed and Open-Vocabulary Attribute Prediction using Trans
    论文框架研究背景和动机这篇论文试图解决什么问题?为什么这个问题重要?这个问题在当前的研究领域中有哪些已知的解决方案?研究方法和创新点论文提出了什么新的方法或模型?这个方法或模型是如何工作的?它与现有的方法相比有哪些改进?论文中的创新点是否显著且有实际意义?理......
  • 如果我想在Android应用中实现资源的自动管理,除了try-with-resources语句,还有哪些设计
    在Android应用开发中,除了使用try-with-resources语句来实现资源的自动管理,还可以参考以下设计模式和最佳实践:1.**单例模式(Singleton)**:  -对于需要全局访问的资源,如数据库连接或共享的配置对象,可以使用单例模式来确保只有一个实例被创建,并在应用的整个生命周期中复用。2......