[merge] Clean up manifest leftovers from old UP implementation
Change-Id: If2a09118a830e3f930c9548d6573ed8679fc6752
This commit is contained in:
parent
1fdc67b47d
commit
c6dcaaead9
|
@ -42,14 +42,6 @@
|
||||||
android:name="android.permission.WRITE_CALENDAR"
|
android:name="android.permission.WRITE_CALENDAR"
|
||||||
tools:node="remove" />
|
tools:node="remove" />
|
||||||
|
|
||||||
<!-- if the user don't have FCM or any unifiedpush distributor -->
|
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
||||||
<!--
|
|
||||||
Required for long polling account synchronisation in background.
|
|
||||||
If not present ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS intent action won't work
|
|
||||||
-->
|
|
||||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
|
||||||
|
|
||||||
<!-- Location Sharing -->
|
<!-- Location Sharing -->
|
||||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
@ -280,7 +272,6 @@
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".features.roomprofile.RoomProfileActivity" />
|
<activity android:name=".features.roomprofile.RoomProfileActivity" />
|
||||||
<activity android:name=".features.roomprofile.settings.joinrule.RoomJoinRuleActivity" />
|
<activity android:name=".features.roomprofile.settings.joinrule.RoomJoinRuleActivity" />
|
||||||
|
|
||||||
<activity android:name=".features.signout.hard.SignedOutActivity" />
|
<activity android:name=".features.signout.hard.SignedOutActivity" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".features.signout.soft.SoftLogoutActivity"
|
android:name=".features.signout.soft.SoftLogoutActivity"
|
||||||
|
@ -385,11 +376,6 @@
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service
|
|
||||||
android:name=".core.services.GuardService"
|
|
||||||
android:exported="false"
|
|
||||||
tools:ignore="Instantiatable" />
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name=".features.location.LocationSharingService"
|
android:name=".features.location.LocationSharingService"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
|
@ -471,31 +457,6 @@
|
||||||
android:resource="@xml/sdk_provider_paths" />
|
android:resource="@xml/sdk_provider_paths" />
|
||||||
</provider>
|
</provider>
|
||||||
|
|
||||||
<receiver android:exported="true" android:enabled="true" android:name=".core.pushers.VectorMessagingReceiver">
|
|
||||||
<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>
|
|
||||||
|
|
||||||
<!-- For the fallback with sync loop if the user don't have FCM or a UnifiedPush Distributor -->
|
|
||||||
<receiver
|
|
||||||
android:name=".core.receiver.OnApplicationUpgradeOrRebootReceiver"
|
|
||||||
android:exported="false">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
||||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
|
|
||||||
<receiver
|
|
||||||
android:name=".core.receiver.AlarmSyncBroadcastReceiver"
|
|
||||||
android:enabled="true"
|
|
||||||
android:exported="false" />
|
|
||||||
|
|
||||||
<!-- Temporary fix for Android 12. android:exported has to be explicitly set when targeting Android 12
|
<!-- Temporary fix for Android 12. android:exported has to be explicitly set when targeting Android 12
|
||||||
Do it for services coming from dependencies - BEGIN -->
|
Do it for services coming from dependencies - BEGIN -->
|
||||||
<service
|
<service
|
||||||
|
|
Loading…
Reference in New Issue