Android Studio报错Failed to find target with hash string 'android-26'的解决办法

Android Studio报错Failed to find target with hash string 'android-26'的解决办法

开始尝试安卓开发很多坑的。

去网上下载一个开源的项目,发现了一些报错可能会不知所措。

ERROR: Failed to find target with hash string 'android-26'
# 原因在于:你的项目中需要用到Android api 26,然而你本地没有下载。
ERROR: Failed to resolve: com.android.support.test.espresso:espresso-core:2.2.2
ERROR: Failed to resolve: com.android.support:appcompat-v7:26.0.0-alpha1
....


报错的地方通常有一个链接,点击进去可以下载一些sdk。

由此可见,其实就是缺少一些sdk....

- over -


5