DocuConverter
DocuConverter copied to clipboard
Duplicate class found
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?
could you please share the details of classes, and problem details as well
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: @.***>
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: @.***>
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'
}
}
please take a look at https://github.com/chirag-ji/DocuConverter/issues/14#issuecomment-1235036211.
Thanks
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: @.***>