I just enabled instant run in my android studio project. (Followed the instructions here)
instant run
My project contains git submodules and somehow th
git
I had the same problem. I resolved it by removing the classpath in the submodule Top-level build.gradle file.
classpath
build.gradle
dependencies { // classpath 'com.android.tools.build:gradle:1.0.0' }
I'm not sure if it's the best thing to do, but it worked for me.