Merge pull request #6429 from vector-im/feature/bma/fragile_data
Add `android:hasFragileUserData="true"` in the manifest
This commit is contained in:
commit
98a7f7df4d
|
@ -0,0 +1 @@
|
|||
Add `android:hasFragileUserData="true"` in the manifest
|
|
@ -77,6 +77,7 @@
|
|||
<application
|
||||
android:name=".VectorApplication"
|
||||
android:allowBackup="false"
|
||||
android:hasFragileUserData="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:networkSecurityConfig="@xml/network_security_config"
|
||||
|
@ -85,6 +86,7 @@
|
|||
android:supportsRtl="true"
|
||||
android:taskAffinity="${applicationId}.${appTaskAffinitySuffix}"
|
||||
android:theme="@style/Theme.Vector.Light"
|
||||
tools:ignore="UnusedAttribute"
|
||||
tools:replace="android:allowBackup">
|
||||
|
||||
<!-- No limit for screen ratio: avoid black strips -->
|
||||
|
@ -413,9 +415,9 @@
|
|||
|
||||
<!-- UnifiedPush -->
|
||||
<receiver
|
||||
android:exported="true"
|
||||
android:name=".core.pushers.VectorMessagingReceiver"
|
||||
android:enabled="true"
|
||||
android:name=".core.pushers.VectorMessagingReceiver">
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="org.unifiedpush.android.connector.MESSAGE" />
|
||||
<action android:name="org.unifiedpush.android.connector.UNREGISTERED" />
|
||||
|
|
Loading…
Reference in New Issue