Skip to content

Integration of the IOMB Lib Android

The integration of the IOMb library Android is done in a few steps via Maven:

Android Studio: Open Gradle Build Configuration of the application, there under "repositories" enter the following statements.

1
2
3
4
5
6
repositories {
    maven {
        url "https://repo.infonline.de/api/v4/projects/5/packages/maven"
        name "INFOnline" 
    }
}
Android Studio: Under "dependencies", reference the IOMb library.

1
2
3
4
dependencies {
    implementation 'de.infonline:iomb-library:1.0.0' // adjust version number for updates
    ...
}

Last update: July 17, 2023