iText

Installing iText on Android

Gradle dependency

You can download iText from our Artifactory by adding this to your Gradle file:

Java
maven {
  url "https://repo.itextsupport.com/android"
}

and then just append -android to any module you would like to use, such as:

Java
dependencies {
  implementation 'com.itextpdf.android:kernel-android:$release-core-7-variable'
}

Examples