-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
60 lines (51 loc) · 2.23 KB
/
AndroidManifest.xml
File metadata and controls
60 lines (51 loc) · 2.23 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
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".Main"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MarkdownWidget"
android:usesCleartextTraffic="true" >
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing"
android:value="false" />
<receiver
android:name=".MarkdownFileWidget"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.appwidget.action.APPWIDGET_OPTIONS_CHANGED" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/markdown_file_widget_info" />
<meta-data
android:name="LauncherMetadata.Requirements.Scrollable"
android:value="true" />
</receiver>
<activity
android:name=".MarkdownFileWidgetConfigureActivity"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service
android:name=".MarkdownWidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
</application>
</manifest>