I just upgraded to Android Studio 0.2.8 and I am getting an error that says \"Default Activity not found\" when I try to edit the run configurations.
When I launch A
When I clicked "Open Module Settings", there was no "Source" tab, I think because that's been removed for newer versions of Android Studio (I'm on 0.8.14). So I had to do this instead:
Add these lines to the build.gradle
file inside the android { ... }
block:
android {
...
sourceSets {
main.java.srcDirs += 'src/main/
After editing the file, click Tools > Android > Sync Project with Gradle Files.
Credit to this answer and this comment.