|
7 | 7 | ~ SPDX-FileCopyrightText: 2017 Daniel Bailey <dan0xii@users.noreply.github.com> |
8 | 8 | ~ SPDX-License-Identifier: GPL-3.0-or-later |
9 | 9 | --> |
10 | | -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
11 | | - xmlns:tools="http://schemas.android.com/tools"> |
| 10 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
12 | 11 |
|
13 | 12 | <uses-permission android:name="android.permission.INTERNET" /> |
14 | 13 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
|
27 | 26 | android:networkSecurityConfig="@xml/network_security_config" |
28 | 27 | android:supportsRtl="true" |
29 | 28 | android:theme="@style/AppTheme" |
30 | | - tools:targetApi="n" |
31 | 29 | android:taskAffinity=""> |
32 | 30 |
|
33 | 31 | <activity |
|
121 | 119 | android:parentActivityName=".main.MainActivity" /> |
122 | 120 |
|
123 | 121 | <activity android:name=".widget.singlenote.SingleNoteWidgetConfigurationActivity" |
124 | | - android:exported="true"> |
| 122 | + android:exported="false"> |
125 | 123 | <intent-filter> |
126 | 124 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
127 | 125 | </intent-filter> |
128 | 126 | </activity> |
129 | 127 |
|
130 | 128 | <activity android:name=".widget.notelist.NoteListWidgetConfigurationActivity" |
131 | | - android:exported="true"> |
| 129 | + android:exported="false"> |
132 | 130 |
|
133 | 131 | <intent-filter> |
134 | 132 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" /> |
|
138 | 136 | <receiver |
139 | 137 | android:name=".widget.singlenote.SingleNoteWidget" |
140 | 138 | android:label="@string/widget_single_note_title" |
141 | | - android:exported="true"> |
| 139 | + android:exported="false"> |
142 | 140 |
|
143 | 141 | <intent-filter> |
144 | 142 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
|
152 | 150 | <receiver |
153 | 151 | android:name=".widget.notelist.NoteListWidget" |
154 | 152 | android:label="@string/widget_note_list_title" |
155 | | - android:exported="true"> |
| 153 | + android:exported="false"> |
156 | 154 |
|
157 | 155 | <intent-filter> |
158 | 156 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
|
0 commit comments