60 lines
2.3 KiB
XML
60 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<application
|
|
android:name=".OmnivoreApplication"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:largeHeap="true"
|
|
android:theme="@style/Theme.AppCompat.Translucent"
|
|
tools:targetApi="31">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.Omnivore.Splash"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".feature.save.SaveSheetActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.pspdfkit.ui.PdfActivity"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
android:windowSoftInputMode="adjustNothing" />
|
|
|
|
<activity
|
|
android:name=".feature.reader.PDFReaderActivity"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
android:windowSoftInputMode="adjustNothing" />
|
|
|
|
<activity
|
|
android:name=".feature.reader.WebReaderLoadingContainerActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.Omnivore"/>
|
|
|
|
</application>
|
|
</manifest>
|