20
20
android : supportsRtl =" true"
21
21
android : theme =" @style/AppTheme"
22
22
tools : targetApi =" n" >
23
+ <receiver
24
+ android : name =" .reciever.WidgetCheckboxReciever"
25
+ android : enabled =" true"
26
+ android : exported =" true" />
23
27
24
28
<activity
25
29
android : name =" .main.MainActivity"
30
+ android : exported =" true"
26
31
android : label =" @string/app_name"
27
- android : theme =" @style/Theme.App.Starting"
28
- android : exported =" true" >
32
+ android : theme =" @style/Theme.App.Starting" >
29
33
<intent-filter >
30
34
<action android : name =" android.intent.action.MAIN" />
35
+
31
36
<category android : name =" android.intent.category.LAUNCHER" />
37
+
32
38
<action android : name =" android.intent.action.SEARCH" />
33
39
</intent-filter >
34
40
39
45
android : name =" android.app.default_searchable"
40
46
android : value =" .android.activity.NotesListViewActivity" />
41
47
</activity >
42
-
43
48
<activity
44
49
android : name =" .importaccount.ImportAccountActivity"
45
50
android : label =" @string/add_account" />
46
-
47
51
<activity
48
52
android : name =" .AppendToNoteActivity"
49
- android : label = " @string/append_to_note "
50
- android : exported = " true " >
53
+ android : exported = " true "
54
+ android : label = " @string/append_to_note " >
51
55
<intent-filter >
52
56
<action android : name =" android.intent.action.SEND" />
57
+
53
58
<category android : name =" android.intent.category.DEFAULT" />
59
+
54
60
<data android : mimeType =" text/*" />
55
61
</intent-filter >
56
62
</activity >
57
-
58
63
<activity
59
64
android : name =" .exception.ExceptionActivity"
60
65
android : label =" @string/app_name" />
61
-
62
66
<activity
63
67
android : name =" .FormattingHelpActivity"
64
68
android : label =" @string/action_formatting_help"
65
69
android : parentActivityName =" .main.MainActivity"
66
70
android : windowSoftInputMode =" stateHidden" />
67
-
68
71
<activity
69
72
android : name =" .manageaccounts.ManageAccountsActivity"
70
73
android : label =" @string/manage_accounts"
71
74
android : parentActivityName =" .main.MainActivity"
72
75
android : windowSoftInputMode =" stateHidden" />
73
-
74
76
<activity
75
77
android : name =" .preferences.PreferencesActivity"
76
78
android : label =" @string/action_settings"
77
79
android : parentActivityName =" .main.MainActivity"
78
80
android : windowSoftInputMode =" stateHidden" />
79
-
80
81
<activity
81
82
android : name =" .edit.EditNoteActivity"
83
+ android : exported =" true"
82
84
android : label =" @string/simple_edit"
83
85
android : launchMode =" singleTask"
84
86
android : parentActivityName =" .main.MainActivity"
85
- android : windowSoftInputMode =" stateHidden"
86
- android : exported =" true" >
87
+ android : windowSoftInputMode =" stateHidden" >
87
88
<intent-filter android : label =" @string/action_create" >
88
89
<action android : name =" android.intent.action.SEND" />
90
+
89
91
<category android : name =" android.intent.category.DEFAULT" />
92
+
90
93
<data android : mimeType =" text/plain" />
91
94
</intent-filter >
92
95
<!-- Voice command "note to self" in google search -->
93
96
<intent-filter android : label =" @string/action_create" >
94
97
<action android : name =" com.google.android.gm.action.AUTO_SEND" />
98
+
95
99
<category android : name =" android.intent.category.DEFAULT" />
100
+
96
101
<data android : mimeType =" text/plain" />
97
102
</intent-filter >
98
103
<intent-filter android : label =" @string/app_name" >
99
104
<action android : name =" android.intent.action.VIEW" />
105
+
100
106
<category android : name =" android.intent.category.DEFAULT" />
101
107
102
108
<data android : scheme =" content" />
103
109
<data android : host =" *" />
104
110
<data android : mimeType =" text/*" />
105
111
</intent-filter >
106
112
</activity >
107
-
108
113
<activity
109
114
android : name =" .about.AboutActivity"
110
115
android : label =" @string/simple_about"
111
116
android : parentActivityName =" .main.MainActivity" />
112
-
113
- < activity android : name =" .widget.singlenote.SingleNoteWidgetConfigurationActivity"
117
+ < activity
118
+ android : name =" .widget.singlenote.SingleNoteWidgetConfigurationActivity"
114
119
android : exported =" true" >
115
120
<intent-filter >
116
121
<action android : name =" android.appwidget.action.APPWIDGET_CONFIGURE" />
117
122
</intent-filter >
118
123
</activity >
119
-
120
- < activity android : name =" .widget.notelist.NoteListWidgetConfigurationActivity"
124
+ < activity
125
+ android : name =" .widget.notelist.NoteListWidgetConfigurationActivity"
121
126
android : exported =" true" >
122
-
123
127
<intent-filter >
124
128
<action android : name =" android.appwidget.action.APPWIDGET_CONFIGURE" />
125
129
</intent-filter >
126
130
</activity >
127
131
128
132
<receiver
129
133
android : name =" .widget.singlenote.SingleNoteWidget"
130
- android : label =" @string/widget_single_note_title"
131
- android : exported =" true" >
132
-
134
+ android : exported =" true"
135
+ android : label =" @string/widget_single_note_title" >
133
136
<intent-filter >
134
137
<action android : name =" android.appwidget.action.APPWIDGET_UPDATE" />
135
138
</intent-filter >
138
141
android : name =" android.appwidget.provider"
139
142
android : resource =" @xml/single_note_widget_provider_info" />
140
143
</receiver >
141
-
142
144
<receiver
143
145
android : name =" .widget.notelist.NoteListWidget"
144
- android : label =" @string/widget_note_list_title"
145
- android : exported =" true" >
146
-
146
+ android : exported =" true"
147
+ android : label =" @string/widget_note_list_title" >
147
148
<intent-filter >
148
149
<action android : name =" android.appwidget.action.APPWIDGET_UPDATE" />
149
150
</intent-filter >
156
157
<service
157
158
android : name =" .widget.singlenote.SingleNoteWidgetService"
158
159
android : permission =" android.permission.BIND_REMOTEVIEWS" />
159
-
160
160
<service
161
161
android : name =" .widget.notelist.NoteListWidgetService"
162
162
android : permission =" android.permission.BIND_REMOTEVIEWS" />
163
-
164
163
<service
165
164
android : name =" .quicksettings.NewNoteTileService"
166
165
android : description =" @string/action_create"
166
+ android : exported =" true"
167
167
android : icon =" @drawable/ic_launcher_foreground_full"
168
168
android : label =" @string/action_create"
169
- android : permission =" android.permission.BIND_QUICK_SETTINGS_TILE"
170
- android : exported =" true" >
169
+ android : permission =" android.permission.BIND_QUICK_SETTINGS_TILE" >
171
170
<intent-filter >
172
171
<action android : name =" android.service.quicksettings.action.QS_TILE" />
173
172
</intent-filter >
174
173
</service >
175
-
176
174
</application >
177
- </manifest >
175
+
176
+ </manifest >
0 commit comments