Unable To Build Android+scala Project Using Sbt+sbt-android Plugin
I can't build Android + Scala (and IntelliJ Idea 12) project using sbt and sbt-android plugin. I installed everything needed and added ANDROID_SDK_HOME to both .bashrc and /etc/pro
Solution 1:
First, doing sudo echo $ANDROID_HOME
will be exactly the same as echo $ANDROID_HOME
, because the variable will be replaced by your shell before executing the command.
Then, you most likely have a permission problem. Try running this to make sure you have the right ones :
$ chmod -Rv 700 /home/me123/Documents/android_projects/my-android-project/
Post a Comment for "Unable To Build Android+scala Project Using Sbt+sbt-android Plugin"