AAPT: error: resource android:attr/lStar not found.
今天运行flutter Android 项目,突然就运行不起来了。后来发现是有些插件升级导致的。他们使用了是 androidx.appcompat:appcompat:1.4.0 对应的core:1.7.0androidx.appcompat:appcompat:1.4.0解决方案:把插件的版本改成对应是androidx.appcompat:appcompat:1.3.1对应的core:1.5.0
·
今天运行flutter Android 项目,突然就运行不起来了。
后来发现是有些插件升级导致的。
他们使用了是 androidx.appcompat:appcompat:1.4.0 对应的core:1.7.0
implementation 'androidx.appcompat:appcompat:1.4.0'
解决方案:
把插件的版本改成对应是 androidx.appcompat:appcompat:1.3.1 对应的core:1.5.0
implementation 'androidx.appcompat:appcompat:1.3.1'
更多推荐
已为社区贡献8条内容
所有评论(0)