DocuConverter icon indicating copy to clipboard operation
DocuConverter copied to clipboard

Duplicate class found

Open sallu-tech opened this issue 2 years ago • 6 comments

After adding the library in my app-level build.gradle file, I am now getting tons of error saying Duplicate class found. I checked my libs folder as well but it's empty. Almost tried all the solutions on StackOverflow but no luck. Any guesses?

sallu-tech avatar Dec 07 '22 20:12 sallu-tech

could you please share the details of classes, and problem details as well

chirag-ji avatar Dec 11 '22 07:12 chirag-ji

There are tons of classes which shows duplicated.

On Sun, 11 Dec 2022 at 12:01 PM, Chirag Gupta @.***> wrote:

could you please share the details of classes, and problem details as well

— Reply to this email directly, view it on GitHub https://github.com/chirag-ji/DocuConverter/issues/15#issuecomment-1345475037, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANKR7ERD5TP2EWQABEWTWQTWMV36HANCNFSM6AAAAAASXISTRU . You are receiving this because you authored the thread.Message ID: @.***>

sallu-tech avatar Dec 11 '22 08:12 sallu-tech

I have also attached the screenshot of the errors. Please see attached.

On Sun, Dec 11, 2022 at 1:18 PM Muhammad Salman Khan < @.***> wrote:

There are tons of classes which shows duplicated.

On Sun, 11 Dec 2022 at 12:01 PM, Chirag Gupta @.***> wrote:

could you please share the details of classes, and problem details as well

— Reply to this email directly, view it on GitHub https://github.com/chirag-ji/DocuConverter/issues/15#issuecomment-1345475037, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANKR7ERD5TP2EWQABEWTWQTWMV36HANCNFSM6AAAAAASXISTRU . You are receiving this because you authored the thread.Message ID: @.***>

sallu-tech avatar Dec 12 '22 15:12 sallu-tech

for those who got error, just add this in android (build.gradle)

configurations {
        all {
            exclude group: 'org.apache.poi', module: 'ooxml-schemas'
            exclude group: 'org.apache.poi', module: 'poi-ooxml-lite'
        }
    }

hmduc1603 avatar Dec 14 '22 02:12 hmduc1603

please take a look at https://github.com/chirag-ji/DocuConverter/issues/14#issuecomment-1235036211.

Thanks

chirag-ji avatar Dec 14 '22 12:12 chirag-ji

okay so I added this in app level build.gradle and now I am getting the following errors. Please see attached. Also please note that I want to target android 5.0 and above.

On Wed, Dec 14, 2022 at 7:59 AM hmduc1603 @.***> wrote:

for those who got error, just add this in android (build.gradle)

configurations { all { exclude group: 'org.apache.poi', module: 'ooxml-schemas' exclude group: 'org.apache.poi', module: 'poi-ooxml-lite' } }

— Reply to this email directly, view it on GitHub https://github.com/chirag-ji/DocuConverter/issues/15#issuecomment-1350308313, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANKR7EW7PIS75KY5W7G3X7DWNEZY3ANCNFSM6AAAAAASXISTRU . You are receiving this because you authored the thread.Message ID: @.***>

sallu-tech avatar Dec 14 '22 15:12 sallu-tech