转自:请访问原博文https://blog.csdn.net/q347853660/article/details/53558188
这个错误提示,有老司机告诉我是因为Android studio自己更新了,但是有一些东西没有更新到,所以就找不到这个东西报错了。最后在网上看了很多方法都没有用,仔细一想,以前写的东西没有这个错误,所有去找了以前的项目来看看build.gradle文件。

apply plugin: ‘com.android.application’

android {
compileSdkVersion 24
buildToolsVersion “24.0.2”

defaultConfig {    applicationId  “heiheiheiheiheihei"    minSdkVersion 15    targetSdkVersion 24    versionCode 1    versionName "1.0"}buildTypes {    release {        minifyEnabled false        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'    }}

}

dependencies {
compile fileTree(dir: ‘libs’, include: [‘*.jar’])
testCompile ‘junit:junit:4.12’
compile ‘com.android.support:appcompat-v7:24.2.0’
}

改了红字这几个地方,然后在点一下提示跳出来的try again就可以了。

更多相关文章

  1. Android(安卓)Audio System
  2. 吐血推荐一些有用的网址1
  3. Android-Activity Task 与 Intent Filter Flag
  4. 有用链接
  5. 20个Android很有用的代码片段
  6. 15个Android很有用的代码片段
  7. AndroidStudio中jniLibs目录自动生成
  8. Android开发学习笔记:Android很有用的代码片段
  9. 【Android】Android设计准则

随机推荐

  1. Android(安卓)RecyclerView 间距全适配
  2. 第1章 Android简介与开发环境的配置
  3. Android 画图 之 Matrix(二)
  4. 05Android Studio使用插件推荐
  5. android 从相册中获取图片设置成头像的问
  6. Android外置存储备忘
  7. Android 安全模型
  8. React Native使用高德地图定位(适用Andro
  9. Android面试系列文章2018之Android部分In
  10. Android 中ContentProvider的实例详解