flutter开发Build failed due to use of deprecated Android v1 embedding错误的解决方法


flutter开发Build failed due to use of deprecated Android v1 embedding错误的解决方法

问题描述:

构建flutter项目时错误了这个错误:Build failed due to use of deprecated Android v1 embedding

问题原因:

使用了flutter v2的sdk编译项目,而你的项目是旧的v1时候开发的

解决方法:

android/app/src/main下的找到AndroidManifest.xml修改application标签内容如下:

<application
 android:name="${applicationName}" //修改之前的android:name="io.flutter.app.FlutterApplication"为这样
 android:label="flutter_nest_page_view"
 android:icon="@mipmap/ic_launcher">
 <meta-data		//添加这个meta-data标签内容
     android:name="flutterEmbedding"
     android:value="2" />
...
</application>

(告诉大家一个技巧:新建一个flutter项目,比较一下缺少什么就自然知道怎么改了。其实其他旧项目引起的问题都可以使用类似方法解决的哦。。。)

原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/272587.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论