Skip to content

Commit

Permalink
doc: update README.md about the SDK installation
Browse files Browse the repository at this point in the history
  • Loading branch information
dbi1463 committed Aug 31, 2024
1 parent e533b42 commit 3e8cde0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,16 @@ Follow the steps to use the TenMax Mobile SDK:

### Install SDK

You can download the AAR file from the release and put the AAR file into `<project-root>/<your-app>/libs`. However, the SDK needs other libraries (GSON, Retrofit, and AD identifier) to work, thus, please add the SDK and required libraries together:
You can download the AAR file from the release and put the AAR file into `<project-root>/<your-app>/libs` and let Android Studio import it.

However, the SDK needs other libraries (Gson, Retrofit, and Google Play AD identifier) to work, thus, please also add required libraries:

- Gson (`com.google.code.gson:gson:2.11.0`)
- Retrofit (`com.squareup.retrofit2:retrofit:2.11.0`)
- Gson Converter (`com.squareup.retrofit2:converter-gson:2.11.0`)
- Google Play AD Identifier (`com.google.android.gms:play-services-ads-identifier:18.1.0`)

After importing those libraries, you should see something like this in your `build.gradle.kts`:

```gradle
dependencies {
Expand Down

0 comments on commit 3e8cde0

Please sign in to comment.