More than one file was found with OS independent path 'com/mysql/jdbc/configs/maxPerformance.properties'
when I tried to build my gradle in Android Studio I am tring to use MySQL as database in my project
More than one file was found with OS independent path 'com/mysql/jdbc/configs/maxPerformance.properties'
when I tried to build my gradle in Android Studio I am tring to use MySQL as database in my project
You linked the mysql-connector-java dependency twice. I would suggest linking the dependency via:
implementation 'mysql:mysql-connector-java:5.1.45'
This dependency is available at jcenter (https://bintray.com/bintray/jcenter/mysql:mysql-connector-java).
However I would not recommend connecting directly to SQL database. I would prefer writing a REST service instead. The reasons why you should not use direct connection to database are explained here.