|
1 |
| -<?xml version="1.0" encoding="utf-8"?> |
2 |
| -<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 |
| - xmlns:tools="http://schemas.android.com/tools"> |
| 1 | +<?xml version="1.0" encoding="utf-8"?><!-- |
| 2 | + ~ Nextcloud Notes - Android Client |
| 3 | + ~ |
| 4 | + ~ SPDX-FileCopyrightText: 2015-2024 Nextcloud GmbH and Nextcloud contributors |
| 5 | + ~ SPDX-FileCopyrightText: 2015-2024 Stefan Niedermann <[email protected]> |
| 6 | + ~ SPDX-FileCopyrightText: 2017 Daniel Bailey <[email protected]> |
| 7 | + ~ SPDX-License-Identifier: GPL-3.0-or-later |
| 8 | +--> |
| 9 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
4 | 10 |
|
5 | 11 | <uses-permission android:name="android.permission.INTERNET" />
|
6 | 12 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
19 | 25 | android:networkSecurityConfig="@xml/network_security_config"
|
20 | 26 | android:supportsRtl="true"
|
21 | 27 | android:theme="@style/AppTheme"
|
22 |
| - tools:targetApi="n" |
23 | 28 | android:taskAffinity="">
|
24 | 29 |
|
25 | 30 | <activity
|
|
113 | 118 | android:parentActivityName=".main.MainActivity" />
|
114 | 119 |
|
115 | 120 | <activity android:name=".widget.singlenote.SingleNoteWidgetConfigurationActivity"
|
116 |
| - android:exported="true"> |
| 121 | + android:exported="false"> |
117 | 122 | <intent-filter>
|
118 | 123 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
119 | 124 | </intent-filter>
|
120 | 125 | </activity>
|
121 | 126 |
|
122 | 127 | <activity android:name=".widget.notelist.NoteListWidgetConfigurationActivity"
|
123 |
| - android:exported="true"> |
| 128 | + android:exported="false"> |
124 | 129 |
|
125 | 130 | <intent-filter>
|
126 | 131 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
|
|
130 | 135 | <receiver
|
131 | 136 | android:name=".widget.singlenote.SingleNoteWidget"
|
132 | 137 | android:label="@string/widget_single_note_title"
|
133 |
| - android:exported="true"> |
| 138 | + android:exported="false"> |
134 | 139 |
|
135 | 140 | <intent-filter>
|
136 | 141 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
144 | 149 | <receiver
|
145 | 150 | android:name=".widget.notelist.NoteListWidget"
|
146 | 151 | android:label="@string/widget_note_list_title"
|
147 |
| - android:exported="true"> |
| 152 | + android:exported="false"> |
148 | 153 |
|
149 | 154 | <intent-filter>
|
150 | 155 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
0 commit comments