zoukankan      html  css  js  c++  java
  • Failed to install the following Android SDK

    极力推荐文章:欢迎收藏
    Android 干货分享

    重装 Android Studio 之后发现出现以下错误,导致不能正常make Android 工程。

    Fail 原因如下:

    Failed to install the following Android SDK packages as some licences have not been accepted.
       build-tools;28.0.3 Android SDK Build-Tools 28.0.3
       platforms;android-28 Android SDK Platform 28
    To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager.
    Alternatively, to transfer the license agreements from one workstation to another, see http://d.android.com/r/studio-ui/export-licenses.html
    
    Using Android SDK: D:softwaresdk
    
    

    主要原因是电脑上之前已经安装过SDK,没有接受 许可协议导致的。

    首先打开命令行,进入到报错的sdk路径,找到可以处理licences的文件

    D:software	est>cd ..
    
    D:software>cd  sdk
    
    D:softwaresdk>cd tools
    
    D:softwaresdk	ools>cd bin
    
    D:softwaresdk	oolsin>sdkmanager --licenses
    Warning: File C:UsersAdministrator.android
    epositories.cfg could not be loaded.
    6 of 6 SDK package licenses not accepted.
    Review licenses that have not been accepted (y/N)? y
    ..... 巴拉巴拉一大堆协议,请输入y 否则不管用Android Studio
    
    

    接受完协议之后就可以正常运行Android Studio了。

    至此,本篇已结束,如有不对的地方,欢迎您的建议与指正。同时期待您的关注,感谢您的阅读,谢谢!

    微信关注公众号:  程序员Android,领福利

  • 相关阅读:
    Oracle 性能优化之一二
    要一直知道什么是最重要的
    c# 当引用类型作为方法的参数
    BI测试工具之跨数据库数据对比,支持oracle,sqlserver
    c#分页读取GB文本文件
    Merge compare columns when null
    Oracle常用plsql
    quick sort java version
    基于元数据的ETL系统
    Centos 6.5(64bit)上安装Vertica single node
  • 原文地址:https://www.cnblogs.com/wangjie1990/p/11327584.html
Copyright © 2011-2022 走看看