Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The module below have been removed from Gradle structure

Trying new Android studio got the following message

enter image description here

What changed and in which files I have to make to include the modules in the Gradle structure.

like image 821
Gaurav Agarwal Avatar asked May 29 '13 00:05

Gaurav Agarwal


1 Answers

The list of gradle modules is define in gradle.settings file (at the root of your project). So check this file to see if it's still valid. It must contains something like:

include :CheckAndroidStudio

Additionally, you can check the build.gradle files to see if they are valid scripts and if they define the android plugin. (i.e. apply plugin: 'android')

Take a look at this link to find the minimal configuration for an Android app.

According my understanding project configuration in Android Studio is completely driven by those files.

like image 85
ben75 Avatar answered Nov 07 '22 12:11

ben75