-
Notifications
You must be signed in to change notification settings - Fork 8
/
AndroidManifest.xml
87 lines (75 loc) · 3.01 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.nproth.pin">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<queries>
<intent>
<!-- Allow custom text actions (like "search selected text") -->
<action android:name="android.intent.action.PROCESS_TEXT" />
<data android:mimeType="text/plain" />
</intent>
</queries>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:installLocation="internalOnly"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".pinboard.PinboardService"
android:enabled="true"
android:exported="false"/>
<activity
android:name=".NoteActivity"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:noHistory="true"
android:windowSoftInputMode="adjustResize"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name=".NotesProvider"
android:authorities="@string/authority_provider_notes"
android:enabled="true"
android:exported="false" />
<receiver
android:name=".receiver.DeleteNoteReceiver"
android:enabled="true" />
<receiver
android:name=".receiver.SnoozeNoteReceiver"
android:enabled="true" />
<receiver
android:name=".receiver.BootReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".receiver.AlarmReceiver"
android:enabled="true" />
<service
android:name=".receiver.NotificationJobService"
android:enabled="true"
android:permission="android.permission.BIND_JOB_SERVICE" />
<service
android:name=".PinTileService"
android:label="@string/qstile_label"
android:icon="@drawable/ic_pin_icon_white"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
android:exported="true">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
</application>
</manifest>