热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Jenkins编译错误——youhavenotacceptedthelicenseagreementsofthefollowingSDKcomponents:

jenkins自动化编译时,出现如下类似问题。编译错误.png根据提示是因为缺少AndroidSDKPlatform24.需要手动使用sdk命令行安装该库来解决。从android-

jenkins自动化编译时,出现如下类似问题。

《Jenkins编译错误——you have not accepted the license agreements of the following SDK components:》 编译错误.png

根据提示是因为缺少Android SDK Platform 24.需要手动使用sdk命令行安装该库来解决。

从android-sdk 25.2.3开始google提供了新的工具sdkmanager来代替android命令。具体使用方法可参考续篇。 Jenkins编译错误——you have not accepted the license agreements of the following SDK components(二)

一、获取可安装的组件列表

//命令行输入
$android list sdk
[root@localhost workspace]# android list sdk
Refresh Sources:
Fetching https://dl.google.com/android/repository/addons_list-2.xml
Validate XML
Parse XML
Fetched Add-ons List successfully
Refresh Sources
Fetching URL: https://dl.google.com/android/repository/repository-11.xml
Validate XML: https://dl.google.com/android/repository/repository-11.xml
Parse XML: https://dl.google.com/android/repository/repository-11.xml
Fetching URL: https://dl.google.com/android/repository/addon.xml
Validate XML: https://dl.google.com/android/repository/addon.xml
Parse XML: https://dl.google.com/android/repository/addon.xml
Fetching URL: https://dl.google.com/android/repository/glass/addon.xml
Validate XML: https://dl.google.com/android/repository/glass/addon.xml
Parse XML: https://dl.google.com/android/repository/glass/addon.xml
Fetching URL: https://dl.google.com/android/repository/extras/intel/addon.xml
Validate XML: https://dl.google.com/android/repository/extras/intel/addon.xml
Parse XML: https://dl.google.com/android/repository/extras/intel/addon.xml
Fetching URL: https://dl.google.com/android/repository/sys-img/android/sys-img.xml
Validate XML: https://dl.google.com/android/repository/sys-img/android/sys-img.xml
Parse XML: https://dl.google.com/android/repository/sys-img/android/sys-img.xml
Fetching URL: https://dl.google.com/android/repository/sys-img/android-wear/sys-img.xml
Validate XML: https://dl.google.com/android/repository/sys-img/android-wear/sys-img.xml
Parse XML: https://dl.google.com/android/repository/sys-img/android-wear/sys-img.xml
Fetching URL: https://dl.google.com/android/repository/sys-img/android-tv/sys-img.xml
Validate XML: https://dl.google.com/android/repository/sys-img/android-tv/sys-img.xml
Parse XML: https://dl.google.com/android/repository/sys-img/android-tv/sys-img.xml
Fetching URL: https://dl.google.com/android/repository/sys-img/google_apis/sys-img.xml
Validate XML: https://dl.google.com/android/repository/sys-img/google_apis/sys-img.xml
Parse XML: https://dl.google.com/android/repository/sys-img/google_apis/sys-img.xml
Packages available for installation or update: 26
1- Android SDK Tools, revision 25.2.5
2- Android SDK Platform-tools, revision 25.0.3
3- Documentation for Android SDK, API 24, revision 1
4- SDK Platform Android 7.1.1, API 25, revision 3
5- SDK Platform Android 7.0, API 24, revision 2
6- Android TV Intel x86 Atom System Image, Android API 23, revision 8
7- Android Wear ARM EABI v7a System Image, Android API 23, revision 6
8- Google APIs, Android API 24, revision 1
9- Google APIs, Android API 23, revision 1
10- Google APIs, Android API 22, revision 1
11- Google APIs, Android API 21, revision 1
12- Google APIs, Android API 19, revision 20
13- Glass Development Kit Preview, Android API 19, revision 11
14- Google APIs, Android API 18, revision 4
15- Google APIs, Android API 17, revision 4
16- Google APIs, Android API 16, revision 4
17- Google APIs, Android API 15, revision 3
18- Android Support Repository, revision 43
19- Android Auto Desktop Head Unit emulator, revision 1.1
20- Google Play services, revision 38
21- Google Repository, revision 43
22- Google Play APK Expansion library, revision 1
23- Google Play Licensing Library, revision 1
24- Google Play Billing Library, revision 5
25- Android Auto API Simulators, revision 1
26- Google Web Driver, revision 2
//显示全部可安装列表.如果上述命令中未找到想要的工具
[root@localhost workspace]# android list sdk -a

二、下载安装。通过–filter选项,指定需要下载的组件。在提示接受license时,输入y即可完成下载安装。

[root@localhost workspace]# android update sdk --no-ui --filter 5
Refresh Sources:
Fetching https://dl.google.com/android/repository/addons_list-2.xml
Validate XML
Parse XML
***************************省略***********************************
-------------------------------
License id: android-sdk-license-c81a61d9
Used by:
- SDK Platform Android 7.0, API 24, revision 2
-------------------------------
Terms and Conditions
This is the Android Software Development Kit License Agreement
***************************省略***********************************
November 20, 2015
Do you accept the license 'android-sdk-license-c81a61d9' [y/n]:
Installing Archives:
Preparing to install archives
Downloading SDK Platform Android 7.0, API 24, revision 2
Installing SDK Platform Android 7.0, API 24, revision 2
Installed SDK Platform Android 7.0, API 24, revision 296%)
Done. 1 package installed.
//如果参数为全部可安装列表中的序号,需要加入-a参数
[root@localhost workspace]# android update sdk -a --no-ui --filter 5

推荐阅读
  • 深入解析ESFramework中的AgileTcp组件
    本文详细介绍了ESFramework框架中AgileTcp组件的设计与实现。AgileTcp是ESFramework提供的ITcp接口的高效实现,旨在优化TCP通信的性能和结构清晰度。 ... [详细]
  • 掌握Mosek矩阵运算,轻松应对优化挑战
    本篇文章继续深入探讨Mosek学习笔记系列,特别是矩阵运算部分,这对于优化问题的解决至关重要。通过本文,您将了解到如何高效地使用Mosek进行矩阵初始化、线性代数运算及约束域的设定。 ... [详细]
  • 深入解析Java虚拟机(JVM)架构与原理
    本文旨在为读者提供对Java虚拟机(JVM)的全面理解,涵盖其主要组成部分、工作原理及其在不同平台上的实现。通过详细探讨JVM的结构和内部机制,帮助开发者更好地掌握Java编程的核心技术。 ... [详细]
  • 版本控制工具——Git常用操作(下)
    本文由云+社区发表作者:工程师小熊摘要:上一集我们一起入门学习了git的基本概念和git常用的操作,包括提交和同步代码、使用分支、出现代码冲突的解决办法、紧急保存现场和恢复 ... [详细]
  • 由二叉树到贪心算法
    二叉树很重要树是数据结构中的重中之重,尤其以各类二叉树为学习的难点。单就面试而言,在 ... [详细]
  • 在编译BSP包过程中,遇到了一个与 'gets' 函数相关的编译错误。该问题通常发生在较新的编译环境中,由于 'gets' 函数已被弃用并视为安全漏洞。本文将详细介绍如何通过修改源代码和配置文件来解决这一问题。 ... [详细]
  • 本文探讨了在 SQL Server 中使用 JDBC 插入数据时遇到的问题。通过详细分析代码和数据库配置,提供了解决方案并解释了潜在的原因。 ... [详细]
  • CentOS 7.6环境下Prometheus与Grafana的集成部署指南
    本文旨在提供一套详细的步骤,指导读者如何在CentOS 7.6操作系统上成功安装和配置Prometheus 2.17.1及Grafana 6.7.2-1,实现高效的数据监控与可视化。 ... [详细]
  • 本文探讨了在iOS平台上开发BLE(蓝牙低功耗)应用程序时遇到的挑战,特别是如何实现应用在后台模式下仍能持续扫描并连接蓝牙设备。文章提供了具体的配置方法和常见的问题解决方案。 ... [详细]
  • java文本编辑器,java文本编辑器设计思路
    java文本编辑器,java文本编辑器设计思路 ... [详细]
  • 本文详细探讨了Java命令行参数的概念、使用方法及在实际编程中的应用,包括如何通过命令行传递参数给Java程序,以及如何在Java程序中解析这些参数。 ... [详细]
  • 本文详细介绍了如何在现有的Android Studio项目中集成JNI(Java Native Interface),包括下载必要的NDK和构建工具,配置CMakeLists.txt文件,以及编写和调用JNI函数的具体步骤。 ... [详细]
  • 主调|大侠_重温C++ ... [详细]
  • 本文详细介绍了get和set方法的作用及其在编程中的实现方式,同时探讨了点语法的使用场景。通过具体示例,解释了属性声明与合成存取方法的概念,并补充了相关操作的最佳实践。 ... [详细]
  • cJinja:C++编写的轻量级HTML模板引擎
    本文介绍了cJinja,这是一个用C++编写的轻量级HTML模板解析库。它利用ejson来处理模板中的数据替换(即上下文),其语法与Django Jinja非常相似,功能强大且易于学习。 ... [详细]
author-avatar
蕊儿巧乐-滋
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有