Kevin Kulothungan
Kevin Kulothungan

Reputation: 46

Your app contains embedded private keys or keystore files org/bouncycastle/openssl/test/data/dsa/openssl_dsa_aes128_cbc.pem

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

Answers (1)

Waqar Khan
Waqar Khan

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

Related Questions