`2 files found with path 'META-INF/AL2.0'.` this s...
# android
m
2 files found with path 'META-INF/AL2.0'.
this started to appear all of a sudden in my project. why? what does this mean?
g
it means that different libraries have the same resource, so gradle cannot merge them, you can exclude it, something like:
Copy code
android {
    defaultConfig {
        packagingOptions { exclude("META-INF/AL2.0") }
👍 3
m
thank you
133 Views