Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added install instructions for Kotlin DSL #718

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down