Andre Perkins
Andre Perkins

Reputation: 7800

Android Studio Version Build Codes

Everytime I attempt to "Make" my project in Android Studio. I keep receiving this compilation error:

Error:(1469,57) java: cannot find symbol symbol: variable JELLY_BEAN location: class android.os.Build.VERSION_CODES

I am using Android Studio 0.4.2

Upvotes: 0

Views: 1052

Answers (1)

Piyush Agarwal
Piyush Agarwal

Reputation: 25858

JELLY_BEAN is added in version codes after API level 16

http://developer.android.com/reference/android/os/Build.VERSION_CODES.html#JELLY_BEAN

So Make sure your compileSdkVersion is 16 or higher in build.gradle file. It is defined in build.gradle file like

android {

    compileSdkVersion 16     // 16 or Higher
    buildToolsVersion '19.0.1'
    .............
}

Upvotes: 1

Related Questions