Android studio error After run the project
android, android-studio, android-support-library
Solution
In your android-studio find it in File->Other Settings->Default Project Structure->SDKs. Then i changed JDK home path.
Problem
I am getting following error while trying to run my app from android studio `Execution failed for task ':app:compileDebugJava'. Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory`. After searching on internet, I found some solution like this ``` export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_45/ ``` so i gave this command in terminal from android studio dirctory but its not workout it show the same error again.