Some test text!
Android / Guides / 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.
Feature | Relevant permission |
---|---|
| android.permission.INTERNET |
| android.permission.RECORD_AUDIO |
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>
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales