其他分享
首页 > 其他分享> > 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项目时错误了这个错误: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项目,比较一下缺少什么就自然知道怎么改了。其实其他旧项目引起的问题都可以使用类似方法解决的哦。。。)

标签:use,deprecated,due,v1,Build,Android,flutter
来源: https://www.cnblogs.com/yongfengnice/p/16313332.html