Some test text!
Android / FAQ / Add a license key
The Apryse library is automatically initialized if you have added a valid license key to your project's AndroidManifest.xml
file. Alternatively, you can add the key by manually calling the static initialization methods. Before moving forward, please make sure you have added the Apryse libraries to your project .
AndroidManifest.xml
file named pdftron_license_key
. If you prefer to initialize Apryse manually, see the next section for more information.Find your gradle.properties
file in the root folder of your project and add your license key:
PDFTRON_LICENSE_KEY=INSERT_COMMERCIAL_LICENSE_KEY_HERE_AFTER_PURCHASE
Then in your module's build.gradle
file (usually located at app/build.gradle
) add:
android {
defaultConfig {
// ...
manifestPlaceholders = [pdftronLicenseKey:PDFTRON_LICENSE_KEY]
}
}
Add a placeholder for the license key to your project's AndroidManifest.xml
file, inside the <application>
tag:
<application
...>
<!-- Add license key in meta-data tag here. This should be inside the application tag. -->
<meta-data
android:name="pdftron_license_key"
android:value="${pdftronLicenseKey}"/>
</application>
This tag will inject a build variable containing your license key into the manifest file.
Next try opening a document in an activity .
It's also possible to disable auto-initialization altogether by adding the following to the <application>
tag in your project's AndroidManifest.xml
file:
<provider
xmlns:tools="http://schemas.android.com/tools"
android:name="com.pdftron.pdfnet.PDFNetInitializer"
android:authorities="${applicationId}.pdftron-pdfnet"
tools:node="remove" />
<provider
xmlns:tools="http://schemas.android.com/tools"
android:name="com.pdftron.pdf.utils.PDFTronToolsInitializer"
android:authorities="${applicationId}.pdftron-tools"
tools:node="remove" />
pdftron_license_key
defined in your AndroidManifest.xml
file, otherwise Apryse will be auto-initialized using this key.Depending on the package you are using , you will need to call different initialization methods. In your main application's or main activity's onCreate method (and before setContentView
in your activity) call one of the following:
Tools package:
If you are using com.pdftron:tools
dependency (i.e. using implementation "com.pdftron:tools:11.0.0"
in your app/build.gradle
file):
com.pdftron.pdf.utils.AppUtils.initializePDFNetApplication(getApplicationContext(), "Insert commercial license key here after purchase");
Apryse package:
If your application requires greater flexibility and you are using classes in the Apryse package directly, you can initialize using the following method instead:
PDFNet.initialize(getApplicationContext(), R.raw.pdfnet, "Insert commercial license key here after purchase");
If you are also using a the Tools library (i.e. com.pdftron:tools
) call:
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
Please note that if you use PDFNet.initialize
, you will have to set up the Apryse library manually (for more information see the Apryse class documentation).
Next try opening a document in an activity .
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales