Integrating MimiSDK

In order to be able to download all the necessary artifacts that compose the MimiSDK, simply add the following lines to your build.gradle files:

app/build.gradle

implementation: 'io.mimi:sdk:3.0.0'

project/build.gradle

allprojects {
    repositories {
        google()
        jcenter()
        // Mimi artifacts repository
        maven {
            url 's3://mimi-artifacts/sdk/public'
            credentials(AwsCredentials) { 
                accessKey 'MY_S3_ACCESS_KEY'; 
                secretKey 'MY_S3_SECRET_KEY' 
            }
        }
    }
}
© 2023 Mimi Hearing Technologies GmbH