Where is my settings.gradle file?

android, android-studio, gradle

Solution

The settings.gradle file isn't needed unless you want to add another project to your build. Just create it and you will be fine.

Here are some useful build related questions:

- How to build an android library with Android Studio and gradle?

- Android studio add external project to build.gradle

- Gradle and Multi-Project structure

Problem

I'm exporting my android project from eclipse to android studio and want to import the facebook SDK to my project. I'm following the guide the can be found on https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android-using-android-studio/3.0/ but when I get to the part where I'm suppose to "update the Gradle files and configure our build-time dependencies" it says that I should open my settings.gradle file, but there is none there! Why is it not there?

Original source