|
27 | 27 | android:name=".ui.MainActivity"
|
28 | 28 | android:launchMode="singleInstance"
|
29 | 29 | android:screenOrientation="portrait"
|
30 |
| - android:theme="@style/AppTheme"> |
| 30 | + android:theme="@style/AppTheme" |
| 31 | + android:exported="true"> |
31 | 32 | <intent-filter>
|
32 | 33 | <action android:name="android.intent.action.MAIN"/>
|
33 | 34 | <category android:name="android.intent.category.LAUNCHER"/>
|
|
55 | 56 | <service
|
56 | 57 | android:name=".service.NotificationListenerService"
|
57 | 58 | android:label="@string/app_name"
|
58 |
| - android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"> |
| 59 | + android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE" |
| 60 | + android:exported="true"> |
59 | 61 | <intent-filter>
|
60 | 62 | <action android:name="android.service.notification.NotificationListenerService"/>
|
61 | 63 | </intent-filter>
|
62 | 64 | </service>
|
63 | 65 | <service android:name=".service.AccessibilityService"
|
64 |
| - android:label="@string/app_name" |
65 |
| - android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> |
66 |
| - <intent-filter> |
67 |
| - <action android:name="android.accessibilityservice.AccessibilityService" /> |
68 |
| - </intent-filter> |
69 |
| - <meta-data |
70 |
| - android:name="android.accessibilityservice" |
71 |
| - android:resource="@xml/accessibility_service_config" /> |
| 66 | + android:label="@string/app_name" |
| 67 | + android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" |
| 68 | + android:exported="true"> |
| 69 | + <intent-filter> |
| 70 | + <action android:name="android.accessibilityservice.AccessibilityService" /> |
| 71 | + </intent-filter> |
| 72 | + <meta-data |
| 73 | + android:name="android.accessibilityservice" |
| 74 | + android:resource="@xml/accessibility_service_config" /> |
72 | 75 | </service>
|
73 | 76 |
|
74 |
| - <receiver android:name=".receiver.PackageReplaced"> |
| 77 | + <receiver android:name=".receiver.PackageReplaced" android:exported="true"> |
75 | 78 | <intent-filter>
|
76 | 79 | <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
77 | 80 | </intent-filter>
|
78 | 81 | </receiver>
|
79 |
| - <receiver android:name=".receiver.AlarmReceiver"> |
| 82 | + <receiver android:name=".receiver.AlarmReceiver" android:exported="true"> |
80 | 83 | <intent-filter>
|
81 | 84 | <action android:name="eu.chainfire.holeylight.ALARM" />
|
82 | 85 | </intent-filter>
|
|
0 commit comments