1

How I can use com.android.setupwizardlib in my project? This library isn't on jcenter or as gradle dependency. This library is used in some apps (Such as Greenify) and it uses the XML tag com.android.setupwizardlib.SetupWizardLayout in my Activity Any solutions about it? I know how to import a library, I only need help with this specific google library Greenify SetupWizardLib

  • Possible duplicate of [How do I add a library project to Android Studio?](http://stackoverflow.com/questions/16588064/how-do-i-add-a-library-project-to-android-studio) – Pat Myron Jan 03 '17 at 23:44

1 Answers1

1

It would be simpler for you to use existing packaged libraries for this functionality, such as some of these or a couple of these.

Otherwise, grab the source code and resources, add them to your project (directly or via a separate library module), and make changes as needed to get it to build.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491