This repository was archived by the owner on Jan 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
54 lines (53 loc) · 2.4 KB
/
AndroidManifest.xml
File metadata and controls
54 lines (53 loc) · 2.4 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.crossbowffs.quotelock">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:label="@string/quotelock"
android:icon="@mipmap/ic_launcher">
<activity android:name=".app.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".modules.custom.app.CustomQuoteConfigActivity"
android:label="@string/module_custom_activity_label"/>
<activity
android:name=".modules.brainyquote.app.BrainyQuoteConfigActivity"
android:label="@string/module_brainy_activity_label"/>
<activity android:name=".modules.hitokoto.app.HitkotoConfigActivity"
android:label="@string/module_hitokoto_activity_label"/>
<provider
android:name=".modules.custom.provider.CustomQuoteProvider"
android:authorities="${applicationId}.modules.custom.provider"
android:exported="false"/>
<service
android:name=".app.QuoteDownloaderService"
android:permission="android.permission.BIND_JOB_SERVICE"/>
<receiver android:name=".app.CommonReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>
<provider
android:name=".provider.PreferenceProvider"
android:authorities="${applicationId}.preferences"
android:exported="true"/>
<meta-data
android:name="xposedmodule"
android:value="true"/>
<meta-data
android:name="xposeddescription"
android:value="Displays quotes on your phone lockscreen"/>
<meta-data
android:name="xposedminversion"
android:value="53"/>
</application>
</manifest>