More Than One File Was Found With Os Independent Path 'builddef.lst' (googlecode.mp4parser:isoparser:)
I got this error while using googlecode.mp4parser:isoparser: for trimming video I used this but when I used telegram video compressor library it starts show this thing|.. More than
Solution 1:
Check your gradle file for app. There might be some library which you would have referred twice. If you can share the gradle contents here, I can help you identify them. Also try cleaning the project and build it again.
Solution 2:
Add this inside the android {...} closure in the build.gradle for your app module to resolve issue:
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
...
}
Post a Comment for "More Than One File Was Found With Os Independent Path 'builddef.lst' (googlecode.mp4parser:isoparser:)"