|
@@ -0,0 +1,36 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ package="com.compdfkit.annotations">
|
|
|
+
|
|
|
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
+ <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
|
|
+
|
|
|
+ <application
|
|
|
+ android:allowBackup="true"
|
|
|
+ android:icon="@mipmap/annotation_ic_launcher"
|
|
|
+ android:label="@string/annotation_app_name"
|
|
|
+ android:supportsRtl="true"
|
|
|
+ android:requestLegacyExternalStorage="true"
|
|
|
+ android:theme="@style/Annotation_Basic_Theme">
|
|
|
+ <activity
|
|
|
+ android:name=".PDFAnnotationSampleActivity"
|
|
|
+ android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
+ android:windowSoftInputMode="adjustPan"
|
|
|
+ android:exported="true">
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.MAIN" />
|
|
|
+
|
|
|
+ <category android:name="android.intent.category.LAUNCHER" />
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <meta-data
|
|
|
+ android:name="compdfkit_key"
|
|
|
+ android:value="{your ComPDFKit key}" />
|
|
|
+ <meta-data
|
|
|
+ android:name="compdfkit_secret"
|
|
|
+ android:value="{your ComPDFKit secret}" />
|
|
|
+ </application>
|
|
|
+
|
|
|
+</manifest>
|