Hi and welcome to devnet,
There's no prebuilt MySQL for Androïd. If you really want that you'll have to first build the MariaDB client library for Androïd and then the MariaDB driver.
That said, when people try to access a MySQL database directly like that from Androïd, it means they are planning to expose their server directly on internet which is a very bad idea. The recommendation is to have a REST api in front of the database that will return only required data and also abstract the database itself.