博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Xamarin提示Build-tools版本过老
阅读量:7017 次
发布时间:2019-06-28

本文共 663 字,大约阅读时间需要 2 分钟。

Xamarin提示Build-tools版本过老

错误信息:G:\XamarinDemo\Xamarin.Forms-master\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets(40,5): error : An outdated of ‘Android SDK Build-tools’ is in use which this version of Android Support Library does not support.  You must uninstall any ‘Android SDK Build-tools’ versions older than 23.0.0 from the ‘Tools’ section in your ‘Android SDK Manager’

解决办法:
(1)在Android SDK Manager中,卸载老版本的Build-tools。
(2)清理解决方案和项目,然后重新生成。
(3)如果步骤(1)和(2)不解决问题,需要在.csproj文件中,指定Build-tools版本,如下:
< PropertyGroup> <AndroidSdkBuildToolsVersion> 23.0.3 </AndroidSdkBuildToolsVersion> </PropertyGroup>

转载地址:http://vpzxl.baihongyu.com/

你可能感兴趣的文章
缓存穿透和雪崩
查看>>
Spring 教程(二) 体系结构
查看>>
IDEA配置spring
查看>>
Mysql 知识(3)
查看>>
yii2 数据库操作详解(转载)
查看>>
JS函数
查看>>
配置cordova的android开发环境(无android studio)
查看>>
步步为营 .NET三层架构解析 七、UI的设计(登陆页面、注册页页和添加部门页面)...
查看>>
POI不同浏览器导出名称处理
查看>>
Tesseract-OCR 字体库下载地址
查看>>
body元素对象的clientWidth、offsetWidth、scrollWidth、clientLeft、offsetLeft、scrollLeft
查看>>
[转]用Excel制作甘特图并管理项目
查看>>
滚动加载事件和禁止滚动条滚动
查看>>
Halcon算子翻译——convert_vector_to_tuple
查看>>
react-native-vector-icons的使用方法
查看>>
《Effective C++》笔记:I
查看>>
C语言 指针和指针变量
查看>>
Windows Mobile 消除安装程序时显示“此程序来自未知发行者…“提示的方法
查看>>
机器学习各类工具weka、scikit-learn等各项指标的对比
查看>>
Java Hibernate 二级缓存配置及缓存的统计策略
查看>>