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
If you can't find your settings.gradle file in your project directory
Add settings.gradle file
Add include ':app' inside the settings.gradle file
Rebuild or sync your project
Your app module should appear in your configuration file.
Try to delete the app.iml in your project directory and restart android studio
in my case, when I added Fragment I git this error.
When I opened THe app build.gradle
I saw id("kotlin-android")
this plugin in plugins.
just remove it!
You have 3 ways:
Clean Project in Android Studio menu
Build -> Clean Project and use Build -> Rebuild
Remove all the modules in settings.gradle
Remove all code in gradle.properties
Remove all code
org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.parallel=true
android.enableBuildCache=true
Sync gradle
I would like to add some more information while I was facing this issue:
Ref: Answer from @Eli:
- Cut line include '
:app
' from the file.- On Android Studio, click on the File Menu, and select Sync Project with Gradle files.
- After synchronisation, paste back line include ':app' to the settings.gradle file.
- Re-run Sync Project with Gradle files again.
So, let's follow the instruction and try to keep one thing in mind, that what is showing in your build configuration. Make sure you are seeing the name of your configuration app
like the image below:
If you are seeing anything else, then the steps mentioned by @Eli (the most accepted answer) will not work.
An alternative Solution
If you have a different name on the Run/Debug Configurations window and the above process is not working, please change the config name to 'app
'
then -> hit Apply -> then Ok.
After that follow this:-
File->Sync project with gradle files (if needed).
Now check the issue will be resolved hopefully. I have faced this issue and I think it might help others as well.
We are currently recommending AS 3.3 for exercises.
These settings will work in the current 3.3 beta version with two small changes to your project:
In build.gradle (Project), change gradle version to 3.3.0-rc02
In menu go to File -> Project Structure. There you can change the gradle version to 4.10.0