19

CocoaPods automatically generates a nice list of acknowledgements for all the projects I've used, so that I can include that info in my applications UI.

Is there something similar for the whole Android / Gradle situation?

More generally, how can I automate collecting and showing the appropriate acknowledgement / licensing info for the components I've used in my Android project?

i_am_jorf
  • 53,608
  • 15
  • 131
  • 222
  • Check this link http://stackoverflow.com/questions/13771375/something-similar-to-cocoa-pods-and-bundler-for-android-for-dependencies – Maheshwar Ligade Feb 14 '16 at 14:57

2 Answers2

3

I'm afraid there's no all in one drop-in equivalent of CocoaPods acknowledgments for the Android ecosystem so far, probably because there is no equivalent of the iOS settings bundle on Android.

Option may be :

meynety
  • 561
  • 3
  • 6
0

I think you should use Maven Plug In. you can use it with your gradle and equivalent to cocoapods

Update ::

use Maven Central to add your dependency in it .

KDeogharkar
  • 10,939
  • 7
  • 51
  • 95
  • Can you be more specific as to how Maven would help automate this? I can't find anything at the link you provided. – i_am_jorf Feb 14 '16 at 21:51
  • sorry If I am not specific . see my updated answer and use sonatype = http://central.sonatype.org/pages/ossrh-guide.html to add your dependency or project to maven central – KDeogharkar Feb 15 '16 at 04:12