Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Vungle:Android-SDK:v5.3.2'
}
dependencies {
implementation("com.github.Vungle:Android-SDK:v5.3.2")
}
<dependency>
<groupId>com.github.Vungle</groupId>
<artifactId>Android-SDK</artifactId>
<version>v5.3.2</version>
</dependency>
libraryDependencies += "com.github.Vungle" % "Android-SDK" % "v5.3.2"
:dependencies [[com.github.Vungle/Android-SDK "v5.3.2"]]
Please refer to https://support.vungle.com/hc/en-us/articles/360002922871
Version 6.12.1
Welcome to the Vungle SDK which has been battle-tested to unlock amazing monetization opportunities for you. The Vungle SDK enables the very best creatives in mobile advertising.
| Component | Version | Description | License | |---------------------------------|---------|-------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------| | Android X (Jetpack) | 1.1.0 | Core and LocalBroadcastManager Android X libraries from Jetpack | Apache 2.0 | | Google Gson | 2.8.6 | Java library to serialize and deserialize Java objects to JSON | Apache 2.0 | | OkHttp | 3.14.9 | An HTTP+HTTP/2 client for Android and Java applications | Apache 2.0 | | Open Measurement (OM) In-App | 1.0 | Measurement of mobile in-app ads by third-party viewability and verification vendors | Open Measurement (OM) License | | Open Measurement (OM) Web Video | 1.0 | Web Video supports video ads on desktop and mobile | Open Measurement (OM) License for Web Video |