|
22 | 22 |
|
23 | 23 | <activity |
24 | 24 | android:name=".activities.SplashActivity" |
| 25 | + android:exported="false" |
25 | 26 | android:launchMode="singleTask" |
26 | 27 | android:theme="@style/SplashTheme" /> |
27 | 28 |
|
28 | 29 | <activity |
29 | 30 | android:name=".activities.MainActivity" |
| 31 | + android:exported="true" |
30 | 32 | android:launchMode="singleTask"> |
31 | 33 |
|
32 | 34 | <intent-filter> |
|
44 | 46 |
|
45 | 47 | <activity |
46 | 48 | android:name=".activities.WidgetConfigureActivity" |
| 49 | + android:exported="true" |
47 | 50 | android:screenOrientation="portrait" |
48 | 51 | android:theme="@style/MyWidgetConfigTheme"> |
49 | 52 | <intent-filter> |
|
53 | 56 |
|
54 | 57 | <activity |
55 | 58 | android:name="com.simplemobiletools.commons.activities.AboutActivity" |
| 59 | + android:exported="false" |
56 | 60 | android:label="@string/about" |
57 | 61 | android:parentActivityName=".activities.MainActivity" /> |
58 | 62 |
|
59 | 63 | <activity |
60 | 64 | android:name="com.simplemobiletools.commons.activities.CustomizationActivity" |
| 65 | + android:exported="false" |
61 | 66 | android:label="@string/customize_colors" |
62 | 67 | android:parentActivityName=".activities.SettingsActivity" /> |
63 | 68 |
|
64 | 69 | <activity |
65 | 70 | android:name="com.simplemobiletools.commons.activities.LicenseActivity" |
| 71 | + android:exported="false" |
66 | 72 | android:label="@string/third_party_licences" |
67 | 73 | android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" /> |
68 | 74 |
|
69 | 75 | <activity |
70 | 76 | android:name="com.simplemobiletools.commons.activities.FAQActivity" |
| 77 | + android:exported="false" |
71 | 78 | android:label="@string/frequently_asked_questions" |
72 | 79 | android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" /> |
73 | 80 |
|
74 | 81 | <activity |
75 | 82 | android:name=".activities.SettingsActivity" |
| 83 | + android:exported="true" |
76 | 84 | android:label="@string/settings" |
77 | | - android:parentActivityName=".activities.MainActivity" /> |
| 85 | + android:parentActivityName=".activities.MainActivity"> |
| 86 | + |
| 87 | + <intent-filter> |
| 88 | + <action android:name="android.intent.action.APPLICATION_PREFERENCES" /> |
| 89 | + <category android:name="android.intent.category.DEFAULT" /> |
| 90 | + </intent-filter> |
| 91 | + </activity> |
78 | 92 |
|
79 | 93 | <service |
80 | 94 | android:name=".services.WidgetService" |
| 95 | + android:exported="true" |
81 | 96 | android:permission="android.permission.BIND_REMOTEVIEWS" /> |
82 | 97 |
|
83 | 98 | <receiver |
84 | 99 | android:name=".helpers.MyWidgetProvider" |
| 100 | + android:exported="true" |
85 | 101 | android:icon="@drawable/img_widget_preview"> |
86 | 102 | <intent-filter> |
87 | 103 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
|
95 | 111 | <activity-alias |
96 | 112 | android:name=".activities.SplashActivity.Red" |
97 | 113 | android:enabled="false" |
| 114 | + android:exported="true" |
98 | 115 | android:icon="@mipmap/ic_launcher_red" |
99 | 116 | android:roundIcon="@mipmap/ic_launcher_red" |
100 | 117 | android:targetActivity=".activities.SplashActivity"> |
|
108 | 125 | <activity-alias |
109 | 126 | android:name=".activities.SplashActivity.Pink" |
110 | 127 | android:enabled="false" |
| 128 | + android:exported="true" |
111 | 129 | android:icon="@mipmap/ic_launcher_pink" |
112 | 130 | android:roundIcon="@mipmap/ic_launcher_pink" |
113 | 131 | android:targetActivity=".activities.SplashActivity"> |
|
121 | 139 | <activity-alias |
122 | 140 | android:name=".activities.SplashActivity.Purple" |
123 | 141 | android:enabled="false" |
| 142 | + android:exported="true" |
124 | 143 | android:icon="@mipmap/ic_launcher_purple" |
125 | 144 | android:roundIcon="@mipmap/ic_launcher_purple" |
126 | 145 | android:targetActivity=".activities.SplashActivity"> |
|
134 | 153 | <activity-alias |
135 | 154 | android:name=".activities.SplashActivity.Deep_purple" |
136 | 155 | android:enabled="false" |
| 156 | + android:exported="true" |
137 | 157 | android:icon="@mipmap/ic_launcher_deep_purple" |
138 | 158 | android:roundIcon="@mipmap/ic_launcher_deep_purple" |
139 | 159 | android:targetActivity=".activities.SplashActivity"> |
|
147 | 167 | <activity-alias |
148 | 168 | android:name=".activities.SplashActivity.Indigo" |
149 | 169 | android:enabled="false" |
| 170 | + android:exported="true" |
150 | 171 | android:icon="@mipmap/ic_launcher_indigo" |
151 | 172 | android:roundIcon="@mipmap/ic_launcher_indigo" |
152 | 173 | android:targetActivity=".activities.SplashActivity"> |
|
160 | 181 | <activity-alias |
161 | 182 | android:name=".activities.SplashActivity.Blue" |
162 | 183 | android:enabled="false" |
| 184 | + android:exported="true" |
163 | 185 | android:icon="@mipmap/ic_launcher_blue" |
164 | 186 | android:roundIcon="@mipmap/ic_launcher_blue" |
165 | 187 | android:targetActivity=".activities.SplashActivity"> |
|
173 | 195 | <activity-alias |
174 | 196 | android:name=".activities.SplashActivity.Light_blue" |
175 | 197 | android:enabled="false" |
| 198 | + android:exported="true" |
176 | 199 | android:icon="@mipmap/ic_launcher_light_blue" |
177 | 200 | android:roundIcon="@mipmap/ic_launcher_light_blue" |
178 | 201 | android:targetActivity=".activities.SplashActivity"> |
|
186 | 209 | <activity-alias |
187 | 210 | android:name=".activities.SplashActivity.Cyan" |
188 | 211 | android:enabled="false" |
| 212 | + android:exported="true" |
189 | 213 | android:icon="@mipmap/ic_launcher_cyan" |
190 | 214 | android:roundIcon="@mipmap/ic_launcher_cyan" |
191 | 215 | android:targetActivity=".activities.SplashActivity"> |
|
199 | 223 | <activity-alias |
200 | 224 | android:name=".activities.SplashActivity.Teal" |
201 | 225 | android:enabled="false" |
| 226 | + android:exported="true" |
202 | 227 | android:icon="@mipmap/ic_launcher_teal" |
203 | 228 | android:roundIcon="@mipmap/ic_launcher_teal" |
204 | 229 | android:targetActivity=".activities.SplashActivity"> |
|
212 | 237 | <activity-alias |
213 | 238 | android:name=".activities.SplashActivity.Green" |
214 | 239 | android:enabled="false" |
| 240 | + android:exported="true" |
215 | 241 | android:icon="@mipmap/ic_launcher_green" |
216 | 242 | android:roundIcon="@mipmap/ic_launcher_green" |
217 | 243 | android:targetActivity=".activities.SplashActivity"> |
|
225 | 251 | <activity-alias |
226 | 252 | android:name=".activities.SplashActivity.Light_green" |
227 | 253 | android:enabled="false" |
| 254 | + android:exported="true" |
228 | 255 | android:icon="@mipmap/ic_launcher_light_green" |
229 | 256 | android:roundIcon="@mipmap/ic_launcher_light_green" |
230 | 257 | android:targetActivity=".activities.SplashActivity"> |
|
238 | 265 | <activity-alias |
239 | 266 | android:name=".activities.SplashActivity.Lime" |
240 | 267 | android:enabled="false" |
| 268 | + android:exported="true" |
241 | 269 | android:icon="@mipmap/ic_launcher_lime" |
242 | 270 | android:roundIcon="@mipmap/ic_launcher_lime" |
243 | 271 | android:targetActivity=".activities.SplashActivity"> |
|
251 | 279 | <activity-alias |
252 | 280 | android:name=".activities.SplashActivity.Yellow" |
253 | 281 | android:enabled="false" |
| 282 | + android:exported="true" |
254 | 283 | android:icon="@mipmap/ic_launcher_yellow" |
255 | 284 | android:roundIcon="@mipmap/ic_launcher_yellow" |
256 | 285 | android:targetActivity=".activities.SplashActivity"> |
|
264 | 293 | <activity-alias |
265 | 294 | android:name=".activities.SplashActivity.Amber" |
266 | 295 | android:enabled="false" |
| 296 | + android:exported="true" |
267 | 297 | android:icon="@mipmap/ic_launcher_amber" |
268 | 298 | android:roundIcon="@mipmap/ic_launcher_amber" |
269 | 299 | android:targetActivity=".activities.SplashActivity"> |
|
277 | 307 | <activity-alias |
278 | 308 | android:name=".activities.SplashActivity.Orange" |
279 | 309 | android:enabled="true" |
| 310 | + android:exported="true" |
280 | 311 | android:icon="@mipmap/ic_launcher" |
281 | 312 | android:roundIcon="@mipmap/ic_launcher" |
282 | 313 | android:targetActivity=".activities.SplashActivity"> |
|
289 | 320 | <activity-alias |
290 | 321 | android:name=".activities.SplashActivity.Deep_orange" |
291 | 322 | android:enabled="false" |
| 323 | + android:exported="true" |
292 | 324 | android:icon="@mipmap/ic_launcher_deep_orange" |
293 | 325 | android:roundIcon="@mipmap/ic_launcher_deep_orange" |
294 | 326 | android:targetActivity=".activities.SplashActivity"> |
|
302 | 334 | <activity-alias |
303 | 335 | android:name=".activities.SplashActivity.Brown" |
304 | 336 | android:enabled="false" |
| 337 | + android:exported="true" |
305 | 338 | android:icon="@mipmap/ic_launcher_brown" |
306 | 339 | android:roundIcon="@mipmap/ic_launcher_brown" |
307 | 340 | android:targetActivity=".activities.SplashActivity"> |
|
315 | 348 | <activity-alias |
316 | 349 | android:name=".activities.SplashActivity.Blue_grey" |
317 | 350 | android:enabled="false" |
| 351 | + android:exported="true" |
318 | 352 | android:icon="@mipmap/ic_launcher_blue_grey" |
319 | 353 | android:roundIcon="@mipmap/ic_launcher_blue_grey" |
320 | 354 | android:targetActivity=".activities.SplashActivity"> |
|
328 | 362 | <activity-alias |
329 | 363 | android:name=".activities.SplashActivity.Grey_black" |
330 | 364 | android:enabled="false" |
| 365 | + android:exported="true" |
331 | 366 | android:icon="@mipmap/ic_launcher_grey_black" |
332 | 367 | android:roundIcon="@mipmap/ic_launcher_grey_black" |
333 | 368 | android:targetActivity=".activities.SplashActivity"> |
|
0 commit comments