Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Failed to install the following Android SDK packages as some licences have not been accepted" error

I am getting this error in jitpack, I've tried everything on the internet. Below is my error

Failed to install the following Android SDK packages as some licences have not been accepted.
     platforms;android-26 Android SDK Platform 26
     build-tools;28.0.3 Android SDK Build-Tools 28.0.3
  To build this project, accept the SDK license agreements and install the missing components using the Android Studio SDK Manager.

And when i run ./sdkmanager --licenses

 All SDK package licenses accepted.======] 100% Computing updates...             

Using sudo with the above command gives

Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema
    at com.android.repository.api.SchemaModule$SchemaModuleVersion.<init>(SchemaModule.java:156)
    at com.android.repository.api.SchemaModule.<init>(SchemaModule.java:75)
    at com.android.sdklib.repository.AndroidSdkHandler.<clinit>(AndroidSdkHandler.java:81)
    at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:73)
    at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:48)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.annotation.XmlSchema
    at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:582)
    at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:190)
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:499)
    ... 5 more

additional error log

File /opt/android-sdk-linux/.android/repositories.cfg could not be loaded.
Checking the license for package Android SDK Build-Tools 28.0.3 in /opt/android-sdk-linux/licenses
Warning: License for package Android SDK Build-Tools 28.0.3 not accepted.
Checking the license for package Android SDK Platform 26 in /opt/android-sdk-linux/licenses
Warning: License for package Android SDK Platform 26 not accepted.

I don't know why it's checking for licenses there when my sdk location is other

like image 479
Reenath Reddy Thummala Avatar asked Jan 20 '19 03:01

Reenath Reddy Thummala


People also ask

How do I fix Android SDK is missing or corrupted?

Quick fix: Go to the Tools –> SDK manager –> SDK tools. Deselect Hide obsolete packages option on the right bottom and further install Android SDK Tools(obsolete). A new folder named Tools is now generated in the SDK directory.

How do I use SDK tools on Windows?

In your browser on the PC, open the Android SDK download page and click Download the SDK Tools ADT Bundle for Windows. On the Get the Android SDK page, you can select either 32-bit or 64-bit, according to your Windows platform. This download includes the SDK tools and the Eclipse IDE.


23 Answers

You need to accept the licences before building.

According to Android SDK docs you can use the following command depending on the sdkmanager location: Docs on --licenses option seems to be missing though.

yes | sdkmanager --licenses

GNU/Linux Distributions:

yes | ~/Android/Sdk/tools/bin/sdkmanager --licenses

macOS:

export JAVA_HOME=/Applications/Android\ Studio.app/Contents/jre/jdk/Contents/Home
yes | ~/Library/Android/sdk/tools/bin/sdkmanager --licenses

Windows:

%ANDROID_HOME%/tools/bin/sdkmanager --licenses

Flutter:

> flutter config --android-sdk 'path-of-android-sdk'(only for ubuntu user)
> flutter doctor --android-licenses
like image 133
Felix Too Avatar answered Oct 06 '22 02:10

Felix Too


In Android Studio go to Tools -> SDK Manager.

Go to SDK Tools tab.

Select the Android SDK Command-line Tools (latest) and download by pressing Apply.

enter image description here

On Windows, you can find the sdkmanager.bat at

C:\Users\[your_user]\AppData\Local\Android\Sdk\cmdline-tools\latest\bin

enter image description here

like image 23
george mano Avatar answered Oct 06 '22 01:10

george mano


in Windows OS go to your sdkmanager path then execute

./sdkmanager.bat --licenses

You can find your sdkmanager in C:\Users\USER\AppData\Local\Android\Sdk\tools\bin

OR

For those people not using android studio on window os. Go to your cmdline-tools\tool\bin and type cmd on the directory box to open the directory in your terminal. Then run sdkmanager --licenses

To find your actual android SDK path follow the red marked area of the below picture

enter image description here

like image 31
Masum Avatar answered Oct 06 '22 00:10

Masum


If you are working with Flutter then this command would definitely work for you.

flutter doctor --android-licenses
like image 34
Adil Aslam Sachwani Avatar answered Oct 06 '22 01:10

Adil Aslam Sachwani


Problem: SDK license not accepted

enter image description here

Step 1: Open SDK Manager

After opening the SDK manager, open the SDK tools tab as shown below

enter image description here

Step 2: Check the option Show Package Details

It'll list out all the versions of SDK tools

enter image description here

Step 3: Install the required SDK tool version

Check the specific version of SDK tools that is complaining (for me, it was 29.0.3 as shown above in the first screenshot) from the list, accept the agreement in the dialog that opens next and you're done.

like image 37
Damercy Avatar answered Oct 06 '22 02:10

Damercy


MacOS Catalina

Step 1: Changing Android Studio Preference

  1. Open-up your Android Studio
  2. Press Command+, or go to top-left AppBar Android Studio > Preferences.
  3. From Left Pane, select Appearance > System Settings > Android SDK
  4. Select SDK Tools next to SDK Platforms and under Android SDK Location
  5. Check mark Android SDK Command-line Tools (latest) and Press OK button.
  6. Wait for installation to be finished

Locating Preferences of Android Studio

Android Studio Preferences

Step 2 (For Flutter Users):

  1. Go to Terminal and run the following command

flutter doctor --android-licenses

Step 2 (For Android Users):

  1. Go to the Terminal and run the following command

export JAVA_HOME=/Applications/Android\ Studio.app/Contents/jre/jdk/Contents/Home

yes | ~/Library/Android/sdk/tools/bin/sdkmanager --licenses

like image 28
Zaman Avatar answered Oct 06 '22 02:10

Zaman


You can accept the license agreements of the stated SDKs by going to the SDK Manager (Settings > [Search for Android SDK]) then find the packages noted in the error message and find them there. Chances are, you'll find SDKs that are not fully installed and installing them will ask you to accept the license agreement. enter image description here

like image 44
hamthenormal Avatar answered Oct 06 '22 00:10

hamthenormal


use android-28 with build-tools at version 28.0.3; or build-tools at version 26.0.3.

or try this: yes | sudo sdkmanager --licenses

like image 26
Martin Zeitler Avatar answered Oct 06 '22 02:10

Martin Zeitler


This works for me:

yes | ./sdkmanager "platforms;android-28"

yes | ./sdkmanager "build-tools;28.0.3"

yes | ./sdkmanager --licenses

like image 45
Angelo Mendes Avatar answered Oct 06 '22 01:10

Angelo Mendes


If you are getting this error while using Flutter then please run the below command on command prompt.

flutter doctor --android-licenses

If you get below error after running the above command

Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/annotation/XmlSchema
    at com.android.repository.api.SchemaModule$SchemaModuleVersion.<init>(SchemaModule.java:156)
    at com.android.repository.api.SchemaModule.<init>(SchemaModule.java:75)
    at com.android.sdklib.repository.AndroidSdkHandler.<clinit>(AndroidSdkHandler.java:81)
    at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:73)
    at com.android.sdklib.tool.sdkmanager.SdkManagerCli.main(SdkManagerCli.java:48)

Then please do the below steps

  1. Open android studio
  2. Go to SDK manager
  3. Click on SDK tools tab
  4. Install Android SDK command line tool
  5. Run flutter doctor --android-licenses again
like image 24
NADIRSHA Avatar answered Oct 06 '22 02:10

NADIRSHA


For Android Studio Arctic Fox, it was solved for me by installing the Google Play Licensing Library.

  1. Go to Preferences
  2. Expand Appearance & Behavior
  3. Then expand System Settings
  4. Select Android SDK and go to SDK Tools tab
  5. Install Google Play Licensing Library

enter image description here

like image 32
artenson.art98 Avatar answered Oct 06 '22 01:10

artenson.art98


In Android Studio go to: Tools > SDK Manager > SDK Tools

On the bottom right, check the "Show Package Details" box and download the version of sdk that you need:

Android Studio Sdk Tools

like image 23
s.dragos Avatar answered Oct 06 '22 02:10

s.dragos


Tried this on Android Studio and it worked for me:

Tools > SDK Manager (Make sure to check Show Packages below)

SDK Platforms > Show Packages > Android - 28 SDK Platforms > Show Packages > Android - 28

SDK Tools > Show Packages > 28.0.3 SDK Tools > Show Packages > 28.0.3

like image 26
Mitzo Avatar answered Oct 06 '22 01:10

Mitzo


Appears to be a bug at the momment: https://issuetracker.google.com/issues/123054726

Solution that worked for me:

Create a .travis.yml file in your project directory and copy these lines:

before_script:
- mkdir "$ANDROID_HOME/licenses" || true
- echo "24333f8a63b6825ea9c5514f83c2829b004d1fee" > "$ANDROID_HOME/licenses/android-sdk-license"

Reference: https://github.com/square/RxIdler/pull/18/files

like image 40
AussieOz Avatar answered Oct 06 '22 02:10

AussieOz


in Windows OS go to your sdkmanager path directory in cmd

You can find your sdkmanager in C:\Users\USER\AppData\Local\Android\Sdk\tools\bin

then execute the followwing command:

sdkmanager --licenses

after that it will ask to accept license agreement several times then accept all by just typing y on cmd

like image 28
Ragini Gupta Avatar answered Oct 06 '22 01:10

Ragini Gupta


This works for me in Windows 10:

C:
cd \Users\YOUR_USER\AppData\Local\Android\Sdk\cmdline-tools\latest\bin
sdkmanager.bat --licenses

After, yes to all

like image 3
aristotekean Avatar answered Oct 06 '22 02:10

aristotekean


On Mac OS 10.15.1, I got the same error even after accepted all the licenses by running sdkmanager --licenses It worked after I updated the ANDROID_HOME path configuration in the ~/.bash_profile to the following

export ANDROID_HOME=/Users/your_username/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
export PATH=$PATH:~/Library/Android/sdk/platform-tools

And reload the ~/.bash_profile

source ~/.bash_profile 
like image 2
s-hunter Avatar answered Oct 06 '22 01:10

s-hunter


I tried many solutions but didn't work for me. The below solution works for me.

locate the sdkmanager file in android SDK.

In my case : ~/Android/Sdk/tools/bin

go to that path : cd ~/Android/Sdk/tools/bin

Accept licenses manually : ./sdkmanager --licenses Enter Yes or y

like image 2
shubham rasal Avatar answered Oct 06 '22 00:10

shubham rasal


If you are using flutter go with the following steps

1.open the command prompt

Then the following command

2.C:\Users\niroshan>flutter doctor

And you will see the issues as follows

Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.22.2, on Microsoft Windows [Version 10.0.17763.1339], locale en-US)

[!] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    X Android licenses not accepted.  To resolve this, run: flutter doctor --android-licenses
[!] Android Studio (version 4.1.0)
    X Flutter plugin not installed; this adds Flutter specific functionality.
    X Dart plugin not installed; this adds Dart specific functionality.
[√] VS Code (version 1.50.1)
[!] Connected device
    ! No devices available

! Doctor found issues in 3 categories.

Actually what you have to run is the below command

C:\Users\niroshan>flutter doctor --android-licenses
like image 2
Niroshan Ratnayake Avatar answered Oct 06 '22 01:10

Niroshan Ratnayake


https://www.youtube.com/watch?v=g789PvvW4qo really helped me. What had done is open SDK Manager and download any new SDK Platform (dont worry it wont affect your desired api level).

Because with downlaoding any SDK Platforms(API level), you should accept licences. That's the trick worked for me.

like image 2
n-y Avatar answered Oct 06 '22 01:10

n-y


I had the same problem when trying to run an app on my android device in a different project where I was working with some old version of tomcat8 and had to set the JAVA_OPTS variable and value. So I removed this system variable for JAVA_OPTS, which had a Variable value set to -Xms1024m (Remove the JAVA_OPTS system variable, but you can also store it for future use if you need to revert to using your old projects that might need it).

Then run the SDK manager bat file in your sdk path: PS C:\Users[your_pc_username]\AppData\Local\Android\Sdk\tools\bin> .\sdkmanager.bat --licenses

Accept all licenses (Y).

like image 2
user9522026 Avatar answered Oct 06 '22 00:10

user9522026


How I solve this problem (AndroidStudio 4.2)

  • Click in Build tab
  • Select Failed to install the following Android SDK packages ... (warning)
  • Click Install missing SDK package(s)
like image 2
Linh Avatar answered Oct 06 '22 02:10

Linh


On Ubuntu it still didn't work using the answers suggested.

This is what worked for me:

cd full-path-to-bin folder, where sdkmanager is located.

yes | ./sdkmanager --licenses --sdk_root="full-path-to-bin"

In the option --help it shows we can pass common args to it, which finally accepted ALL licences:

Usage:
...
sdkmanager --licenses [<common args>]
...
Common Arguments:
    --sdk_root=<sdkRootPath>: Use the specified SDK root instead of the SDK containing this tool
like image 2
Pamela Sarkisyan Avatar answered Oct 06 '22 02:10

Pamela Sarkisyan