From 6215cde49a602336a83fe27dbf84478ef40c9c92 Mon Sep 17 00:00:00 2001 From: charles-the-developer Date: Wed, 29 Nov 2023 23:42:32 +1100 Subject: [PATCH] added install instructions for Kotlin DSL --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b477f5240..1d0c18ebe 100644 --- a/README.md +++ b/README.md @@ -7,22 +7,27 @@ See [this page](https://docs.prebid.org/prebid-server/overview/prebid-server-ove ## Use Maven? -Easily include the Prebid Mobile SDK using Maven. Simply add this line to your gradle dependencies: +You can include the Prebid Mobile SDK using Maven. If your build script is Groovy-based, add this line to your gradle dependencies: ``` -implementation 'org.prebid:prebid-mobile-sdk:2.1.8' +implementation 'org.prebid:prebid-mobile-sdk:2.1.6' +``` + +If your build script uses Kotlin DSL instead, add this line to your gradle dependencies: + +``` +implementation("org.prebid:prebid-mobile-sdk:2.1.6") ``` ## Build from source -Build Prebid Mobile from source code. After cloning the repo, from the root directory run +Build Prebid Mobile from source code. After cloning the repo, from the root directory run: ``` scripts/buildPrebidMobile.sh ``` -to output the final lib jar and package you a demo app. - +This will output the final lib jar and package your demo app. ## Test Prebid Mobile