1

I've found this library to be used with android: https://github.com/Yalantis/uCrop

I understand the Usage instructions, but as I never used a library before, I don't know how or what should I copy to make run the sample project.

I'll appreciate any help with this.

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
GEPD
  • 198
  • 2
  • 16
  • 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) – OneCricketeer Nov 13 '16 at 20:40

1 Answers1

1

If you use Android Studio, it is very easy to include libraries in your project.

Just find file named build.gradle in app folder, in dependencies block add compile 'com.yalantis:ucrop:2.2.0'

dependencies {
    //HERE WILL BE SOME ANDROID LIBRARIES

   compile 'com.yalantis:ucrop:2.2.0'
}
Sergey Zabelnikov
  • 1,855
  • 1
  • 14
  • 24