66 lines
2.5 KiB
XML
66 lines
2.5 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="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:remove="android:maxSdkVersion" />
|
|
|
|
<application
|
|
android:name=".OmnivoreApplication"
|
|
android:allowBackup="false"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="false"
|
|
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"/>
|
|
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="${applicationId}.androidx-startup"
|
|
tools:node="remove">
|
|
</provider>
|
|
|
|
</application>
|
|
</manifest>
|