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:

Gradle dependencies

app/build.gradle

implementation: 'io.mimi:sdk:3.1.0'

gradle/wrapper/gradle-wrapper.properties

In order to be able to download our MSDK artifacts, you will need to specify 5.6.3 as the minimum gradle version in your project.

distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-all.zip

Then you will also need to add the following maven repository filled with your given credentials.

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