fedilab-Android-App/app/src/common/AndroidManifest.xml

103 lines
4.5 KiB
XML
Raw Normal View History

2019-09-06 17:55:14 +02:00
<?xml version="1.0" encoding="utf-8"?><!--
2017-05-05 16:36:04 +02:00
Copyright 2017 Thomas Schneider
2019-05-18 11:10:30 +02:00
This file is a part of Fedilab
2017-05-05 16:36:04 +02:00
This program is free software; you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
2019-05-18 11:10:30 +02:00
Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2017-05-05 16:36:04 +02:00
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.
2019-05-18 11:10:30 +02:00
You should have received a copy of the GNU General Public License along with Fedilab; if not,
2017-05-05 16:36:04 +02:00
see <http://www.gnu.org/licenses>
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2018-09-05 10:19:07 +02:00
xmlns:tools="http://schemas.android.com/tools"
2019-11-15 16:32:25 +01:00
package="app.fedilab.android"
android:installLocation="auto">
2017-05-05 16:36:04 +02:00
<application
2019-05-18 11:10:30 +02:00
android:name="app.fedilab.android.activities.MainApplication"
2019-12-17 16:37:21 +01:00
android:requestLegacyExternalStorage="true"
2018-02-17 16:25:16 +01:00
android:allowBackup="false"
2019-11-15 16:32:25 +01:00
android:hardwareAccelerated="true"
2019-09-25 13:55:03 +02:00
android:icon="@mipmap/ic_launcher_bubbles"
2017-05-05 16:36:04 +02:00
android:label="@string/app_name"
2018-09-16 15:05:33 +02:00
android:largeHeap="true"
2019-09-25 13:55:03 +02:00
android:roundIcon="@mipmap/ic_launcher_bubbles_round"
2017-05-05 16:36:04 +02:00
android:supportsRtl="true"
2019-11-15 16:32:25 +01:00
android:theme="@style/AppThemeDark"
android:usesCleartextTraffic="true"
tools:replace="android:allowBackup">
2017-12-13 15:27:26 +01:00
2020-07-14 19:26:39 +02:00
<activity-alias
android:name=".activities.MainActivity.Bubbles"
android:enabled="true"
android:icon="@mipmap/ic_launcher_bubbles"
android:roundIcon="@mipmap/ic_launcher_bubbles_round"
android:targetActivity=".activities.MainActivity">
<meta-data
android:name="icon"
android:value="bubbles" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
2019-09-06 17:55:14 +02:00
<activity
android:name="app.fedilab.android.activities.PhotoEditorActivity"
2019-11-15 16:32:25 +01:00
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name" />
2019-09-06 17:55:14 +02:00
<activity
android:name="app.fedilab.android.activities.OwnerStatusActivity"
2019-07-28 15:55:25 +02:00
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
2019-11-07 19:51:53 +01:00
android:launchMode="singleTask"
2019-11-15 16:32:25 +01:00
android:theme="@style/AppThemeDark_NoActionBar"
android:windowSoftInputMode="stateAlwaysHidden" />
2019-09-06 17:55:14 +02:00
<activity
android:name="app.fedilab.android.activities.OwnerNotificationChartsActivity"
2019-08-26 18:27:23 +02:00
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
2019-11-15 16:32:25 +01:00
android:launchMode="singleTask"
android:windowSoftInputMode="stateAlwaysHidden" />
2019-09-06 17:55:14 +02:00
<activity
android:name="app.fedilab.android.activities.OwnerChartsActivity"
2019-08-25 17:21:34 +02:00
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
2019-11-15 16:32:25 +01:00
android:launchMode="singleTask"
android:windowSoftInputMode="stateAlwaysHidden" />
2019-09-06 17:55:14 +02:00
<activity
android:name="app.fedilab.android.activities.OwnerNotificationActivity"
2018-02-17 11:28:52 +01:00
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
2019-11-07 19:51:53 +01:00
android:launchMode="singleTask"
2019-11-15 16:32:25 +01:00
android:theme="@style/AppThemeDark_NoActionBar"
android:windowSoftInputMode="stateAlwaysHidden" />
2020-07-14 17:33:58 +02:00
<activity
android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
android:theme="@style/Base.Theme.AppCompat" />
2021-02-21 17:18:37 +01:00
<receiver
android:name=".services.UnifiedPushService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="org.unifiedpush.android.connector.MESSAGE" />
<action android:name="org.unifiedpush.android.connector.UNREGISTERED" />
<action android:name="org.unifiedpush.android.connector.NEW_ENDPOINT" />
<action android:name="org.unifiedpush.android.connector.REGISTRATION_FAILED" />
<action android:name="org.unifiedpush.android.connector.REGISTRATION_REFUSED" />
</intent-filter>
</receiver>
2017-05-05 16:36:04 +02:00
</application>
</manifest>