YuriySPb, answering the question, advised to use the following library: Material Dialogs

I had a problem joining this project. I know how to add Library Folder or Jar . the project on this link looks more like a project than like a Library .

How to add a project on a link to a project in Android Studio ?

    1 answer 1

    In the file build.gradle (module app), add this as described on the library page:

     dependencies { ... //materialDialogs compile('com.afollestad.material-dialogs:core:0.8.5.4@aar') { transitive = true } //materialDialogs repositories { maven { url "https://jitpack.io" } } } 
    • ok, but don't add anything to the project itself? - David Kern
    • 2
      @DavidKern, this entry in this file will automatically download the necessary files from the network and attach them to the project. - Yuriy SPb