How to add a dependency to Maven
Add the following io.cubos : android-runtime maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>io.cubos</groupId>
<artifactId>android-runtime</artifactId>
<version>20230531190344</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following io.cubos : android-runtime gradle dependency to your build.gradle
file:
implementation 'io.cubos:android-runtime:20230531190344'
Gradle Kotlin DSL: Add the following io.cubos : android-runtime gradle kotlin dependency to your build.gradle.kts
file:
implementation("io.cubos:android-runtime:20230531190344")
How to add a dependency to SBT Scala
SBT Scala: Add the following io.cubos : android-runtime sbt scala dependency to your build.sbt
file:
libraryDependencies += "io.cubos" % "android-runtime" % "20230531190344"