Some test text!

Search
Hamburger Icon

Android / Guides / Permissions

Android permissions

Some features in Apryse's Android SDK require certain Android permissions, the most prominent one being storage permission for accessing documents stored locally on the device. A summary of Apryse's features and their required permission are shown below. If you need any of the specified features listed below, you will need to add the appropriate Android permissions.

Android permissions list

FeatureRelevant permission
  • Opening a PDF from a URL
  • HTML to PDF conversion
  • Realtime collaboration
android.permission.INTERNET
  • Creating sound annotations
android.permission.RECORD_AUDIO
Storage Permission
Please follow the latest Android best practices and guidelines outlined here

Add permissions

You can add permissions to your Android app by including the <uses-permission> tag for the specified permission in your AndroidManifest.xml file. You can learn more about Android permissions in the Android documentation.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.pdftron.myapplication"
    ...>

    <!-- Permissions are added in the manifest tag -->
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.RECORD_AUDIO" />

    ...
</manifest>

Get the answers you need: Chat with us