Skip to content

Commit 790f8fd

Browse files
committed
Specify android:exported="true" to the Screensaver activity
- Fix #175; - Remove unnecessary "android:exported" attributes for other activities;
1 parent 3849e8e commit 790f8fd

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

app/src/main/AndroidManifest.xml

+1-8
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848

4949
<activity
5050
android:name="com.best.deskclock.FirstLaunch"
51-
android:exported="true"
5251
android:launchMode="singleTask"
5352
android:theme="@style/Theme.DeskClock">
5453
</activity>
@@ -316,7 +315,7 @@
316315

317316
<service
318317
android:name="com.best.deskclock.screensaver.Screensaver"
319-
android:exported="false"
318+
android:exported="true"
320319
android:label="@string/app_label"
321320
android:permission="android.permission.BIND_DREAM_SERVICE">
322321
<intent-filter>
@@ -356,7 +355,6 @@
356355
android:name="com.best.deskclock.settings.DigitalWidgetCustomizationActivity"
357356
android:excludeFromRecents="true"
358357
android:label="@string/digital_widget"
359-
android:exported="true"
360358
android:theme="@style/Theme.DeskClock" />
361359

362360
<receiver
@@ -389,7 +387,6 @@
389387
android:name="com.best.deskclock.settings.VerticalDigitalWidgetCustomizationActivity"
390388
android:excludeFromRecents="true"
391389
android:label="@string/vertical_digital_widget"
392-
android:exported="true"
393390
android:theme="@style/Theme.DeskClock" />
394391

395392
<receiver
@@ -416,7 +413,6 @@
416413
android:name="com.best.deskclock.settings.NextAlarmWidgetCustomizationActivity"
417414
android:excludeFromRecents="true"
418415
android:label="@string/next_alarm_widget"
419-
android:exported="true"
420416
android:theme="@style/Theme.DeskClock" />
421417

422418
<receiver
@@ -465,7 +461,6 @@
465461
android:name="com.best.deskclock.settings.MaterialYouDigitalWidgetCustomizationActivity"
466462
android:excludeFromRecents="true"
467463
android:label="@string/material_you_digital_widget"
468-
android:exported="true"
469464
android:theme="@style/Theme.DeskClock" />
470465

471466
<receiver
@@ -498,7 +493,6 @@
498493
android:name="com.best.deskclock.settings.MaterialYouVerticalDigitalWidgetCustomizationActivity"
499494
android:excludeFromRecents="true"
500495
android:label="@string/material_you_vertical_digital_widget"
501-
android:exported="true"
502496
android:theme="@style/Theme.DeskClock" />
503497

504498
<receiver
@@ -525,7 +519,6 @@
525519
android:name="com.best.deskclock.settings.MaterialYouNextAlarmWidgetCustomizationActivity"
526520
android:excludeFromRecents="true"
527521
android:label="@string/material_you_next_alarm_widget"
528-
android:exported="true"
529522
android:theme="@style/Theme.DeskClock" />
530523

531524
<receiver

0 commit comments

Comments
 (0)