Android equivalent to CocoaPods Pods-Acknowledgements.plist? -
cocoapods automatically generates nice list of acknowledgements projects i've used, can include info in applications ui.
is there similar whole android / gradle situation?
more generally, how can automate collecting , showing appropriate acknowledgement / licensing info components i've used in android project?
i'm afraid there's no in 1 drop-in equivalent of cocoapods acknowledgments android ecosystem far, because there no equivalent of ios settings bundle on android.
option may :
generation part : use gradle plugin create reports dependencies licence : https://github.com/jk1/gradle-license-report or https://github.com/hierynomus/license-gradle-plugin (downloadlicenses task)
show user part : you'll have manually, parts want reports , put example in googleplay description, or store wherever want (local or remote) , show user @ first launch after install (https://github.com/prashantsolanki3/shoot)
Comments
Post a Comment