Error "Dependent package with key emulator not found" while updating Android SDK and tools

android-studio, android-studio-2.3

Solution

This worked for me as this post try: Update 2 https://stackoverflow.com/a/42735118/5133603

Update 2:

Solution to emulator package issue!

After digging in the repo's XML for a while I've spotted the issue.

It turns out that the "emulator" package is only in channel 3 (canary) while the "tools" package is in channel 0 (stable) but depends on "emulator". The solution is to force the manager to download the "emulator" package from channel 3:

./sdkmanager --channel=3 emulator

Problem solved!

Problem

I tried to update my Android Studio and got this error. How can I fix this? I don't have much experience with Android studio and Android app development. I am using Android Studio 2.3 and Linux.

Original source

Related problems