Skip to main content

ProCONF Android SDK

How to integrate ProCONF Android SDK

To integrate ProCONF Android SDK into your application, you will need to perform a few tasks. Follow the steps given below.

  • Create libs folder

    • Create the libs folder at root level inside your Android application codebase and place given proconfSdk-standard-debug.aar into the libs folder.
  • Add dependency

    • Add ProCONF SDK dependency as below: inside your module's build.gradle add below code

      dependencies {
      implementation files('../libs/proconfSdk-standard-debug.aar')
      }
  • Add pre-build SDK artifacts/binaries

    • build.gradle : This typically goes into the build.gradle file in the root of your project as below


      allprojects {
      repositories {
      maven {
      url "artifacts_path" // Ex. "file:/tmp/repo"
      }
      google()
      mavenCentral()
      maven { url 'https://www.jitpack.io' }
      }
      }

    • settings.gradle : In recent versions of Android Studios, allprojects{} might not be found in build.gradle. In that case, the repository goes into the settings.gradle file in the root of your project as below


      dependencyResolutionManagement {
      repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
      repositories {
      google()
      mavenCentral()
      maven {
      url "artifacts_path" // Ex. "file:/tmp/repo"
      }
      maven {
      url "https://maven.google.com"
      }
      }
      }
  • Add pre-build SDK dependency

    dependencies {
    // (other dependencies)
    implementation ('org.jitsi.react:jitsi-meet-sdk:+') { transitive = true }
    }

After implementing above steps, you will be able to access all ProCONF features.