Android_androidstudio_Install Repository and sync project异常

换个电脑安装android studio之后,创建个app人就差点崩溃了

在新建一个app项目的时候。R文件报错。
clean一下 提示的错误信息
Error:Failed to find: com.android.support:appcompat-v7:21.+
Install Repository and sync project
Open File
Open in Project Structure dialog

接下来打开sdk manager
build-tools 我都下载了。
咱们看最后一个Extras下的提示。在那个目录下的com.android.support:appcompat-v7版本
修改
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.1'
}
下的版本信息相同就好。然后clean一下。大功告成

  1. Android_androidstudio_Install Repository and sync project异常_第1张图片
    Android_androidstudio_Install Repository and sync project异常_第2张图片








总结:这种提示主要看看sdk manager安装目录里的Extras目录下的对应版本有没有安装。



你可能感兴趣的:(Android,异常)