File tree Expand file tree Collapse file tree 3 files changed +38
-6
lines changed Expand file tree Collapse file tree 3 files changed +38
-6
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
2- <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : tools =" http://schemas.android.com/tools" >
34
45 <uses-permission android : name =" android.permission.INTERNET" />
5-
66 <uses-permission android : name =" android.permission.CAMERA" />
7-
87 <uses-permission android : name =" android.permission.READ_CONTACTS" />
98 <uses-permission android : name =" android.permission.WRITE_CONTACTS" />
10-
119 <uses-permission android : name =" android.permission.ACCESS_COARSE_LOCATION" />
1210 <uses-permission android : name =" android.permission.ACCESS_FINE_LOCATION" />
1311 <uses-permission android : name =" android.permission.ACCESS_BACKGROUND_LOCATION" />
14-
1512 <uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE" />
1613
1714 <application
1815 android : name =" com.example.moviedb.MainApplication"
1916 android : allowBackup =" false"
17+ android : dataExtractionRules =" @xml/data_extraction_rules"
18+ android : fullBackupContent =" @xml/backup_rules"
2019 android : icon =" @mipmap/ic_launcher"
2120 android : label =" @string/app_name"
2221 android : roundIcon =" @mipmap/ic_launcher_round"
2322 android : supportsRtl =" true"
2423 android : theme =" @style/Theme.MyApplication"
25- android : usesCleartextTraffic =" true" >
24+ android : usesCleartextTraffic =" true"
25+ tools : targetApi =" 31" >
2626
2727 <activity
2828 android : name =" com.example.moviedb.compose.main.ComposeActivity"
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?><!--
2+ Sample backup rules file; uncomment and customize as necessary.
3+ See https://developer.android.com/guide/topics/data/autobackup
4+ for details.
5+ Note: This file is ignored for devices older that API 31
6+ See https://developer.android.com/about/versions/12/backup-restore
7+ -->
8+ <full-backup-content >
9+ <!--
10+ <include domain="sharedpref" path="."/>
11+ <exclude domain="sharedpref" path="device.xml"/>
12+ -->
13+ </full-backup-content >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?><!--
2+ Sample data extraction rules file; uncomment and customize as necessary.
3+ See https://developer.android.com/about/versions/12/backup-restore#xml-changes
4+ for details.
5+ -->
6+ <data-extraction-rules >
7+ <cloud-backup >
8+ <!--
9+ <include .../>
10+ <exclude .../>
11+ -->
12+ </cloud-backup >
13+ <!--
14+ <device-transfer>
15+ <include .../>
16+ <exclude .../>
17+ </device-transfer>
18+ -->
19+ </data-extraction-rules >
You can’t perform that action at this time.
0 commit comments