I am getting a \'Module not specified\' error in my run config. I have no module showing in the drop down yet I can see my module no probs. The issue came about when I refac
check your build.gradle file and make sure that use apply plugin: 'com.android.application' istead of apply plugin: 'com.android.library'
build.gradle
apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
it worked for me