forked from GitHub-Mirror/riotX-android
Forbid backup
This commit is contained in:
parent
317503aa2b
commit
fde09b4a94
@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="im.vector.riotredesign">
|
package="im.vector.riotredesign">
|
||||||
|
|
||||||
|
|
||||||
@ -7,12 +8,13 @@
|
|||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".Riot"
|
android:name=".Riot"
|
||||||
android:allowBackup="true"
|
android:allowBackup="false"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/AppTheme.Light">
|
android:theme="@style/AppTheme.Light"
|
||||||
|
tools:replace="android:allowBackup">
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".features.MainActivity"
|
android:name=".features.MainActivity"
|
||||||
@ -27,7 +29,9 @@
|
|||||||
<activity android:name=".features.home.HomeActivity" />
|
<activity android:name=".features.home.HomeActivity" />
|
||||||
<activity android:name=".features.login.LoginActivity" />
|
<activity android:name=".features.login.LoginActivity" />
|
||||||
<activity android:name=".features.media.MediaViewerActivity" />
|
<activity android:name=".features.media.MediaViewerActivity" />
|
||||||
<activity android:name=".features.rageshake.BugReportActivity" />
|
<activity
|
||||||
|
android:name=".features.rageshake.BugReportActivity"
|
||||||
|
android:label="@string/title_activity_bug_report" />
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
@ -1,19 +0,0 @@
|
|||||||
<!--
|
|
||||||
~ Copyright 2019 New Vector Ltd
|
|
||||||
~
|
|
||||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
~ you may not use this file except in compliance with the License.
|
|
||||||
~ You may obtain a copy of the License at
|
|
||||||
~
|
|
||||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
~
|
|
||||||
~ Unless required by applicable law or agreed to in writing, software
|
|
||||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
~ See the License for the specific language governing permissions and
|
|
||||||
~ limitations under the License.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<resources>
|
|
||||||
<string name="app_name">matrix-sdk-android-rx</string>
|
|
||||||
</resources>
|
|
Loading…
Reference in New Issue
Block a user