In my gradle file, I have the following:
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
}
According to the documentation:
/**
* Adds an excluded paths.
* @param path the path, as packaged in the APK
*/
What does this mean? Could someone give me a real life example of why these exclusions would need to be made?