Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.32 KB

android_sdk_manual_installation.md

File metadata and controls

34 lines (22 loc) · 1.32 KB

Pendo Android SDK manual installation

If you are having problems installing the SDK, please follow these steps:

  1. Download the Pendo SDK (we always recommend taking the latest) here.

  2. Unzip the downloaded file.

  3. Add the local directory to the gradle file or to the settings.gradle if using dependencyResolutionManagement:

    repositories {
        maven {
            url = uri("/path/to/local/file")
        }
    } 
  4. Specify the version number for the Pendo dependency in the gradle file.
    For example, for version 3.4.0.x it should look like this:

    implementation (group:'sdk.pendo.io' , name:'pendoIO', version:'3.4.0.x', changing:true)

Developer documentation

  • API documentation available here.

Troubleshooting