Reputation: 46
I cannot find any .pem file in the library or in my project. But when I extract my apk I could able to see those file. How to get rid of this
Upvotes: 0
Views: 411
Reputation: 478
Try adding this to your build.gradle file.
android {
packagingOptions {
exclude 'your/path/to/file/FILE_NAME.pem'
}
}
Hope it helps.
Upvotes: 1