将Android Studio更新到3.2.1,我被卡住了

时间:2018-10-12 13:24:13

标签: android android-studio android-gradle

我正在开发一个Android应用程序,我从这里获得了很多问题的帮助。谢谢 但 现在几天来我一直停留在“无法解析R”上。 我试图在3种不同的应用程序上工作,但我得到的只是这样的错误 我不知道这是否是android studio的问题

Android版本

enter image description here

我认为很久以来我就收到的

错误

enter image description here

这不是上述项目的gradle.build [app],而是另一个应用程序,因为当我现在重新启动它时,它并没有构建gradle,

apply plugin: 'com.android.application'

android {
    compileSdkVersion 17
    buildToolsVersion "24.0.0"

    defaultConfig {
        applicationId "com.visionapps.demo.swipe"
        minSdkVersion 8
        targetSdkVersion 17
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile files('libs/otto-1.3.3.jar')
}

2 个答案:

答案 0 :(得分:0)

在Android Studio中,在菜单文件-> 项目结构将默认的JDK位置目录更改为您自己的目录:

  

/usr/local/java/jdk1.8.0_111 #path_to_your_jdk

enter image description here

答案 1 :(得分:0)

将编译的SDK版本更改为24

    compileSdkVersion 24
    buildToolsVersion "24.0.3"