Using ConstraintLayout
Finally, you will be asked to add the constraint layout dependency to your project (Figure 9.7).
ConstraintLayout lives in a library, like RecyclerView. To use the tool, you must add a dependency to
your Gradle file. Or, you can select OK on this dialog and Android Studio will do it for you.
Figure 9.7 Adding the ConstraintLayout dependency
If you peep your app/build.gradle file, you will see that the dependency has been added:
Listing 9.1 ConstraintLayout project dependency (app/build.gradle)
dependencies {
...
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
}
Your LinearLayout has now been converted to a ConstraintLayout.