Android incompatible image location system Android 2.0

I downloaded the new Android Studio 2.0 and started buildingig my project, but it outputs an error as follows:

Observed package id 'system-images;android-19;default;x86' in inconsistent location 'C:\Android\sdk\system-images\android-19\x86' (Expected 'C:\Android\sdk\system-images\android-19\default\x86')
+4
source share
1 answer

This happens when you have the old android sdk structure, to solve this problem, put all the system images of the api version in a folder named default

Like this:

system-image/
       android-15/
             default/
                   x86/
                   armeabi-v7a/
       android-19/
             default/
                   x86/
                   armeabi-v7a/
+5
source

Source: https://habr.com/ru/post/1629371/


All Articles