I was trying to build an application. I was successful in making project(ctrl+F9) after that I tried to run my application on the emulator in this process I got the build error. To fix this issue I got a suggestion from Android studio to change build script to following:
To proceed, either fix the issues identified by lint or modify your build script as follows:
android { lintOptions { checkReleaseBuilds false // Or, if you prefer, you can continue to check for errors in release //builds, // but continue the build even when errors are found: abortOnError false } } Where could I find the build script? So, that I can change it. I am a newbie to the Android world.

build.gradle file, either in the project root or module level.