Soham
Soham

Reputation: 4417

Getting error in Android Studio 2.1 with java 8

Currently I am using java 8 with latest android studio 2.1

Here is my build.gradle file

android {
    compileSdkVersion 22
    buildToolsVersion "24rc3"

    defaultConfig {
        applicationId "com.name"
        minSdkVersion 10
        targetSdkVersion 19
        jackOptions {
            enabled true
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
.......
}

I am getting the below compile time error that I have no clue

Error:com.android.jack.frontend.FrontendCompilationException: Failed to compile at com.android.jack.Jack.buildSession(Jack.java:892) at com.android.jack.Jack.run(Jack.java:472) at com.android.jack.api.v01.impl.Api01ConfigImpl$Api01CompilationTaskImpl.run(Api01ConfigImpl.java:102) ... 8 more Warning:Exception while processing task java.io.IOException: com.android.jack.api.v01.CompilationException: Failed to compile :oTT:compileDebugJavaWithJack FAILED Error:Execution failed for task ':oTT:compileDebugJavaWithJack'.

java.io.IOException: com.android.jack.api.v01.CompilationException: Failed to compile Information:BUILD FAILED

Please feel to ask if you need some details.

Upvotes: 21

Views: 14390

Answers (5)

Alex.F
Alex.F

Reputation: 6181

I think we are all looking mostly at the same answer. To be precise I'd say "make sure the buildToolsVersion = "[version]" is the same as the [version] in the error".
For some this will be 24.0.0

Upvotes: 2

Angel Koh
Angel Koh

Reputation: 13485

you can try

compileSdkVersion 23
buildToolsVersion '24.0.0-rc3'

note the dash before rc3. This is according to http://developer.android.com/preview/setup-sdk.html under the section "Update an existing project"

I am using 23 just for the lambda.

the following link shows the Supported Java 8 Language Features and APIs https://developer.android.com/preview/j8-jack.html

Upvotes: 2

Noah Ternullo
Noah Ternullo

Reputation: 677

I had this error too, and what I found was that the error itself was masking another compilation issue. Look at your Console Messages carefully and see if there is something else not compiling. Once I solved the underlying issue with my own code, this error magically disappeared. Hope this helps.

Upvotes: 29

sorry bro
sorry bro

Reputation: 77

Try to use next values:

compileSdkVersion = "android-N"
buildToolsVersion = "24.0.0 rc3"

Upvotes: 2

JingYaoChen
JingYaoChen

Reputation: 1

Some java 8 features only support Android N. read android docs http://developer.android.com/preview/j8-jack.html#configuration

When I use Default Methods on sdk23, I got this error too. so update your sdk version to Android N.

Upvotes: 0

Related Questions