ReadYou/app/src/main/AndroidManifest.xml

47 lines
1.7 KiB
XML
Raw Normal View History

2022-03-01 18:40:53 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-03-21 15:40:40 +01:00
xmlns:tools="http://schemas.android.com/tools"
2022-03-01 18:40:53 +01:00
package="me.ash.reader">
<uses-permission android:name="android.permission.INTERNET" />
2022-04-27 21:42:08 +02:00
<!-- Disable automatic updates in F-Droid -->
<!-- <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />-->
2022-03-01 18:40:53 +01:00
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
2022-03-20 17:07:45 +01:00
android:label="@string/read_you"
2022-03-01 18:40:53 +01:00
android:networkSecurityConfig="@xml/network_security_config"
2022-04-08 19:49:18 +02:00
android:roundIcon="@mipmap/ic_launcher_round"
2022-03-01 18:40:53 +01:00
android:supportsRtl="true"
android:theme="@style/Theme.Reader">
<activity
android:name=".MainActivity"
android:exported="true"
android:theme="@style/Theme.Reader">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2022-04-24 20:21:29 +02:00
2022-03-21 15:40:40 +01:00
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
2022-04-24 20:21:29 +02:00
tools:node="remove" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2022-03-01 18:40:53 +01:00
</application>
</manifest>