22<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
33 xmlns : tools =" http://schemas.android.com/tools" >
44
5+ <!-- All Permissions from your app -->
56 <uses-permission android : name =" android.permission.POST_NOTIFICATIONS" />
67 <uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
78 <uses-permission android : name =" android.permission.SYSTEM_ALERT_WINDOW" />
8- <!-- <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />-->
99 <uses-permission android : name =" android.permission.INTERNET" />
1010 <uses-permission android : name =" android.permission.RECORD_AUDIO" />
11- <uses-permission android : name =" android.permission.RECOGNIZE_SPEECH " />
12- < uses-permission android : name = " android.permission.QUERY_ALL_PACKAGES " />
11+ <uses-permission android : name =" android.permission.QUERY_ALL_PACKAGES "
12+ tools : ignore = " QueryAllPackagesPermission " />
1313 <uses-permission android : name =" android.permission.FOREGROUND_SERVICE_MICROPHONE" />
1414 <uses-permission android : name =" android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
15-
1615 <uses-permission android : name =" android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />
1716
18-
1917 <application
20- android : allowBackup =" true"
2118 android : name =" .MyApplication"
19+ android : allowBackup =" true"
2220 android : dataExtractionRules =" @xml/data_extraction_rules"
2321 android : fullBackupContent =" @xml/backup_rules"
24-
2522 android : icon =" @drawable/panda_logo_v1_512"
26- android : roundIcon =" @drawable/panda_logo_v1_512"
27-
2823 android : label =" @string/app_name"
2924 android : networkSecurityConfig =" @xml/network_security_config"
25+ android : roundIcon =" @drawable/panda_logo_v1_512"
3026 android : supportsRtl =" true"
3127 android : theme =" @style/Theme.Blurr"
3228 tools : targetApi =" 31" >
3329
30+ <!-- Your Activities -->
3431 <activity
3532 android : name =" .MainActivity"
3633 android : exported =" true"
3734 android : label =" @string/app_name"
3835 android : theme =" @style/Theme.Blurr" >
3936 <intent-filter >
4037 <action android : name =" android.intent.action.MAIN" />
41-
4238 <category android : name =" android.intent.category.LAUNCHER" />
4339 </intent-filter >
4440
4541 <meta-data
4642 android : name =" android.app.shortcuts"
4743 android : resource =" @xml/shortcuts" />
4844 </activity >
49- <activity
50- android : name =" .LoginActivity"
51- android : exported =" false"
52- android : label =" Login_activity"
53- android : theme =" @style/Theme.Blurr" />
54- <activity
55- android : name =" .ChatActivity"
56- android : exported =" true"
57- android : label =" @string/app_name"
58- android : theme =" @style/Theme.Blurr" >
59- </activity >
60- <activity
61- android : name =" .DialogueActivity"
62- android : exported =" false"
63- android : label =" @string/app_name"
64- android : theme =" @style/Theme.Blurr"
65- android : windowSoftInputMode =" adjustResize" >
66- </activity >
67- <activity
68- android : name =" .SettingsActivity"
69- android : exported =" false"
70- android : label =" @string/settings"
71- android : theme =" @style/Theme.Blurr" >
72- </activity >
73-
7445
46+ <activity android : name =" .LoginActivity" android : exported =" false" android : label =" Login_activity" android : theme =" @style/Theme.Blurr" />
47+ <activity android : name =" .ChatActivity" android : exported =" true" android : label =" @string/app_name" android : theme =" @style/Theme.Blurr" />
48+ <activity android : name =" .DialogueActivity" android : exported =" false" android : label =" @string/app_name" android : theme =" @style/Theme.Blurr" android : windowSoftInputMode =" adjustResize" />
49+ <activity android : name =" .SettingsActivity" android : exported =" false" android : label =" @string/settings" android : theme =" @style/Theme.Blurr" />
50+ <activity android : name =" .OnboardingPermissionsActivity" android : exported =" false" android : label =" onboarding" android : theme =" @style/Theme.Blurr" />
51+ <activity android : name =" .PermissionsActivity" android : exported =" false" android : label =" @string/permissions_explained_title" android : theme =" @style/Theme.Blurr" />
52+ <activity android : name =" .MemoriesActivity" android : exported =" false" android : label =" My Memories" android : theme =" @style/Theme.Blurr" />
53+ <activity android : name =" .PrivacyActivity" android : exported =" false" android : label =" How Panda Remembers" android : theme =" @style/Theme.Blurr" />
7554 <activity
76- android : name =" .PermissionsActivity "
55+ android : name =" .RoleRequestActivity "
7756 android : exported =" false"
78- android : label = " @string/permissions_explained_title "
79- android : theme = " @style/Theme.Blurr " >
80- </ activity >
57+ android : launchMode = " singleTop "
58+ android : excludeFromRecents = " true "
59+ android : theme = " @style/Theme.MaterialComponents.DayNight.NoActionBar " / >
8160
8261 <activity
83- android : name =" .MemoriesActivity"
84- android : exported =" false"
85- android : label =" My Memories"
86- android : theme =" @style/Theme.Blurr" >
62+ android : name =" .AssistEntryActivity"
63+ android : exported =" true"
64+ android : launchMode =" singleTop"
65+ android : taskAffinity =" "
66+ android : excludeFromRecents =" true" >
67+ <intent-filter >
68+ <action android : name =" android.intent.action.ASSIST" />
69+ <category android : name =" android.intent.category.DEFAULT" />
70+ </intent-filter >
8771 </activity >
8872
89- <activity
90- android : name =" .PrivacyActivity"
91- android : exported =" false"
92- android : label =" How Panda Remembers"
93- android : theme =" @style/Theme.Blurr" >
94- </activity >
9573
74+ <!-- Your Other Services -->
9675 <service
9776 android : name =" .ScreenInteractionService"
9877 android : permission =" android.permission.BIND_ACCESSIBILITY_SERVICE"
137116 android : enabled =" true"
138117 android : exported =" false" />
139118
119+ <!-- Your Widget Provider -->
140120 <receiver
141121 android : name =" .PandaWidgetProvider"
142122 android : exported =" false" >
143123 <intent-filter >
144124 <action android : name =" android.appwidget.action.APPWIDGET_UPDATE" />
145125 </intent-filter >
146-
147126 <meta-data
148127 android : name =" android.appwidget.provider"
149128 android : resource =" @xml/panda_widget_info" />
150129 </receiver >
151130
152131 </application >
153132
154- </manifest >
133+ </manifest >
0 commit comments