Some test text!

Search
Hamburger Icon

Android / FAQ / How do I use the snapshot version of Apryse Android?

How do I use the snapshot version of Apryse Android?

If you are integrating Apryse using Gradle , you can try out a snapshot of the next version of Apryse Android by following the steps below. Alternatively, if you are integrating Apryse manually via AAR or from source, you can get the latest snapshot version at our nightly builds.

This tutorial assumes that your project has integrated the Apryse libraries by following the Gradle integration guide .
  1. In the settings.gradle file in your project's root directory, change the url to use the snapshot Maven repository:
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://pdftron-maven.s3.amazonaws.com/snapshot"
        }
        jcenter() // Warning: this repository is going to shut down soon
    }
}
  1. Then in the build.gradle file in your app module's directory, update the Apryse library versions to the latest snapshot version (typically named following the convention X.X.X-betaX):

    dependencies {
        // Update Apryse versions to the snapshot versions
        implementation "com.pdftron:pdftron:X.X.X-betaX"
        implementation "com.pdftron:tools:X.X.X-betaX"
    }

Get the answers you need: Chat with us