I have trying since long to identify the issue but unfortunately not able to
If I do
android.enableAapt2=true
The code
The issue is with some of the gradles added in project.
Actually the libraries internally have defined the attribute minTextSize
Due to latest updates and compatibility the attr was not found.
To identify I have defined same attr as
16
in attrs.xml in my app module.
Compiling the same thrown error of duplicate value and path and from that path I have found the library which needs to be updated.
Updating to the latest of all library version have solved the issue.