Skip to main content
Version: 6.0.0

SDK as Gradle library

Migration for versions 2.6.0 and below: for existing integrations

Step 1: Project level build.gradle

In-order to integrate Finotes in Android project, add the 'Maven tag with repo URL' shown below to project level build.gradle

build.gradle:

buildscript {
repositories {
}
dependencies {
classpath 'com.android.tools.build:gradle:x.x.x'
}
}
allprojects {
repositories {
jcenter()
maven {
//Finotes Maven repo link
url "https://finotescore-android.s3.amazonaws.com/release"
}
}
}

Step 2: App level build.gradle

Add the following code block in app level build.gradle within the dependencies section.

build.gradle:

releaseImplementation('com.finotes:finotescore:6.0.0@aar') {
transitive = true;
}

debugImplementation('com.finotes:finotesdebug:6.0.0@aar') {
transitive = true;
}

FinotesDebug SDK contains all features of FinotesCore plus the ability to automatically detect Object level memory leaks.