mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-22 13:09:46 +01:00
Disable backups
This commit is contained in:
parent
a177cb6c5f
commit
352147332b
@ -24,12 +24,14 @@
|
||||
|
||||
<application
|
||||
android:name=".application.NextcloudTalkApplication"
|
||||
android:allowBackup="true"
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="@xml/backup_config"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/nc_app_name"
|
||||
android:networkSecurityConfig="@xml/network_security_config"
|
||||
android:supportsRtl="true"
|
||||
android:allowClearUserData="false"
|
||||
android:allowClearUserDataOnFailedRestore="true"
|
||||
android:theme="@style/AppTheme"
|
||||
tools:replace="label, icon, theme, name, allowBackup"
|
||||
tools:ignore="UnusedAttribute, ExportedService">
|
||||
|
@ -62,8 +62,10 @@
|
||||
|
||||
<application
|
||||
android:name=".application.NextcloudTalkApplication"
|
||||
android:allowBackup="true"
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="@xml/backup_config"
|
||||
android:allowClearUserData="false"
|
||||
android:allowClearUserDataOnFailedRestore="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/nc_app_name"
|
||||
android:largeHeap="true"
|
||||
|
@ -697,6 +697,7 @@ class SettingsController : BaseController() {
|
||||
avatarId, R.dimen.avatar_size_big
|
||||
)
|
||||
) {
|
||||
addHeader("Authorization", currentUser!!.getCredentials())
|
||||
transformations(CircleCropTransformation())
|
||||
}
|
||||
}
|
||||
|
@ -31,8 +31,7 @@ import java.net.Proxy.NO_PROXY
|
||||
import java.net.Proxy.Type
|
||||
import java.net.Proxy.Type.SOCKS
|
||||
|
||||
class NetworkUtils {
|
||||
class HeadersInterceptor : Interceptor {
|
||||
class NetworkUtils { class HeadersInterceptor : Interceptor {
|
||||
|
||||
@Throws(IOException::class)
|
||||
override fun intercept(chain: Interceptor.Chain): Response {
|
||||
|
Loading…
Reference in New Issue
Block a user