I have an Android project with an Android application that depends on a pure Java library (and the Java library uses some others compiled jars libraries). I added the de
Add this lines to build.gradle of app module.
build.gradle
app
dependencies { ... implementation fileTree(dir: 'libs', include: ['*.jar']) implementation files('libs/mysql-connector-java-8.0.16') ... }