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:

Groovy

1dependencyResolutionManagement {
2 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
3 repositories {
4 google()
5 mavenCentral()
6 maven {
7 url "https://pdftron-maven.s3.amazonaws.com/snapshot"
8 }
9 jcenter() // Warning: this repository is going to shut down soon
10 }
11}
  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):

Groovy

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

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales