AIRA-android/app/src/main/AndroidManifest.xml

60 lines
2.6 KiB
XML
Raw Normal View History

2021-01-26 19:45:18 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="sushi.hardcore.aira"
android:installLocation="auto">
2021-01-26 19:45:18 +01:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
2021-08-14 14:50:32 +02:00
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
2021-01-26 19:45:18 +01:00
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove"/>
2021-08-14 21:46:21 +02:00
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:node="remove"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="remove"/>
2021-01-26 19:45:18 +01:00
<application
2021-06-15 20:09:04 +02:00
android:icon="@drawable/ic_launcher"
2021-01-26 19:45:18 +01:00
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.AIRA"
android:allowBackup="true">
<service
android:name=".background_service.AIRAService"
android:enabled="true"
android:exported="false"/>
<receiver android:name=".background_service.NotificationBroadcastReceiver" android:exported="false">
<intent-filter>
<action android:name="mark_as_read"/>
2021-08-14 14:50:32 +02:00
</intent-filter>
</receiver>
2021-08-14 21:46:21 +02:00
<receiver android:name=".background_service.SystemBroadcastReceiver" android:exported="true">
2021-08-14 14:50:32 +02:00
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
2021-01-26 19:45:18 +01:00
</intent-filter>
</receiver>
<activity android:name=".ChatActivity" android:theme="@style/Theme.AIRA.NoActionBar"/>
<activity android:name=".MainActivity" android:theme="@style/Theme.AIRA.NoActionBar"/>
2021-05-27 20:15:03 +02:00
<activity
android:name=".LoginActivity"
2021-08-14 21:46:21 +02:00
android:windowSoftInputMode="adjustResize"
android:exported="true">
2021-01-26 19:45:18 +01:00
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter android:label="@string/share_label">
<action android:name="android.intent.action.SEND"/>
<action android:name="android.intent.action.SEND_MULTIPLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="*/*"/>
</intent-filter>
2021-01-26 19:45:18 +01:00
</activity>
<activity android:name=".SettingsActivity"/>
</application>
</manifest>