Skip to content

2. Updating your app's dependencies

Ali Nasrabadi edited this page Oct 28, 2025 · 3 revisions

To get the dependency into your build:

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the following line to the dependencies section of the build.gradle file for your app:

dependencies {
        ...
	implementation 'com.github.cafebazaar:ReferrerSDK:Tag'
}

You can see latest releases here.

Clone this wiki locally