|
16 | 16 | android:label="@string/app_name" |
17 | 17 | android:roundIcon="@mipmap/ic_launcher_round" |
18 | 18 | android:supportsRtl="true" |
19 | | - android:theme="@style/AppTheme" |
| 19 | + android:theme="@style/AppTheme.Starting" |
20 | 20 | tools:ignore="GoogleAppIndexingWarning"> |
21 | 21 |
|
22 | | - <activity android:name=".ui.params.user.ManageFavoritesParamsActivity" /> |
| 22 | + <activity |
| 23 | + android:name=".ui.params.user.ManageFavoritesParamsActivity" |
| 24 | + android:label="@string/tasker_list_plugin_favorites" |
| 25 | + android:theme="@style/AppTheme" /> |
23 | 26 | <activity |
24 | 27 | android:name=".ui.settings.SettingsActivity" |
25 | | - android:label="@string/settings" /> |
| 28 | + android:label="@string/settings" |
| 29 | + android:theme="@style/AppTheme" /> |
26 | 30 | <activity |
27 | 31 | android:name=".ui.params.edit.EditKernelParamActivity" |
28 | 32 | android:label="@string/edit_params" |
29 | | - android:theme="@style/AppTheme.NoActionBar" /> |
| 33 | + android:theme="@style/AppTheme" /> |
30 | 34 | <activity |
31 | 35 | android:name=".ui.main.MainActivity" |
32 | 36 | android:label="@string/app_name" |
33 | | - android:theme="@style/AppTheme.NoActionBar" /> |
| 37 | + android:theme="@style/AppTheme" /> |
34 | 38 | <activity |
35 | | - android:name=".ui.params.list.KernelParamListActivity" |
36 | | - android:label="@string/kernel_params" /> |
| 39 | + android:name=".ui.main.MainActivity2" |
| 40 | + android:label="@string/app_name" |
| 41 | + android:theme="@style/AppTheme" /> |
37 | 42 | <activity |
38 | | - android:name=".ui.params.browse.KernelParamBrowserActivity" |
39 | | - android:label="@string/browse_variables" /> |
| 43 | + android:name=".ui.params.list.KernelParamListActivity" |
| 44 | + android:label="@string/kernel_params" |
| 45 | + android:theme="@style/AppTheme" /> |
40 | 46 | <activity |
41 | 47 | android:name=".ui.params.user.ManageOnStartUpParamsActivity" |
42 | | - android:label="@string/manage_parameters" /> |
| 48 | + android:label="@string/manage_parameters" |
| 49 | + android:theme="@style/AppTheme" /> |
43 | 50 | <activity |
44 | 51 | android:name=".ui.export.ExportOptionsActivity" |
45 | 52 | android:label="@string/export_options" |
46 | | - android:theme="@style/AppTheme.NoActionBar" /> |
| 53 | + android:theme="@style/AppTheme" /> |
47 | 54 | <activity |
48 | | - android:name=".ui.SplashActivity" |
49 | | - android:theme="@style/AppTheme.NoActionBar"> |
| 55 | + android:name=".ui.StartActivity" |
| 56 | + android:exported="true" |
| 57 | + android:theme="@style/AppTheme"> |
50 | 58 | <intent-filter> |
51 | 59 | <action android:name="android.intent.action.MAIN" /> |
52 | 60 |
|
|
59 | 67 | </activity> |
60 | 68 | <activity |
61 | 69 | android:name=".ui.tasker.TaskerPluginActivity" |
| 70 | + android:exported="true" |
62 | 71 | android:label="@string/tasker_settings"> |
63 | 72 | <intent-filter> |
64 | 73 | <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" /> |
|
67 | 76 |
|
68 | 77 | <receiver |
69 | 78 | android:name=".receivers.BootReceiver" |
70 | | - android:enabled="false"> |
| 79 | + android:enabled="true" |
| 80 | + android:exported="false"> |
71 | 81 | <intent-filter> |
72 | 82 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
73 | 83 | </intent-filter> |
74 | 84 | </receiver> |
75 | | - <receiver android:name=".widgets.FavoritesWidget"> |
| 85 | + <receiver |
| 86 | + android:name=".widgets.FavoritesWidget" |
| 87 | + android:exported="false"> |
76 | 88 | <intent-filter> |
77 | 89 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
78 | 90 | </intent-filter> |
|
81 | 93 | android:name="android.appwidget.provider" |
82 | 94 | android:resource="@xml/favorites_widget_info" /> |
83 | 95 | </receiver> |
84 | | - <receiver android:name=".receivers.TaskerReceiver"> |
| 96 | + <receiver |
| 97 | + android:name=".receivers.TaskerReceiver" |
| 98 | + android:exported="true"> |
85 | 99 | <intent-filter> |
86 | 100 | <action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" /> |
87 | 101 | </intent-filter> |
|
102 | 116 | android:permission="android.permission.BIND_REMOTEVIEWS" /> |
103 | 117 | <service |
104 | 118 | android:name=".services.tiles.StartUpTileService" |
| 119 | + android:exported="false" |
105 | 120 | android:icon="@drawable/ic_start_up_tile" |
106 | 121 | android:label="@string/tile_toggle_start_up_label" |
107 | 122 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
|
112 | 127 | </service> |
113 | 128 | <service |
114 | 129 | android:name=".services.tiles.StartAppTileService" |
| 130 | + android:exported="false" |
115 | 131 | android:icon="@drawable/ic_start_app_tile" |
116 | 132 | android:label="@string/tile_start_app_label" |
117 | 133 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
|
0 commit comments