forked from duckduckgo/android-search-and-stories
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
95 lines (78 loc) · 4 KB
/
AndroidManifest.xml
File metadata and controls
95 lines (78 loc) · 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
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
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.duckduckgo.mobile.android"
android:versionCode="60"
android:versionName="2.1.9">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:theme="@style/DDGLight"
android:label="@string/AppName"
android:name="DDGApplication">
<!-- change value from "beta" to "release" for public app store builds -->
<meta-data android:name="DDGReleaseStatus" android:value="build" />
<activity
android:name=".activity.DuckDuckGo"
android:label="@string/AppName"
android:windowSoftInputMode="stateHidden"
android:launchMode="singleTop"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<action android:name="android.intent.action.SEARCH_LONG_PRESS" />
<action android:name="android.intent.action.ASSIST" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<receiver android:name="com.duckduckgo.mobile.android.DuckDuckGoWidgetProviderRed">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="com.duckduckgo.mobile.android.ACTION_ON_WIDGET_CLICK" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info_red" />
</receiver>
<receiver android:name="com.duckduckgo.mobile.android.DuckDuckGoWidgetProviderWhite">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="com.duckduckgo.mobile.android.ACTION_ON_WIDGET_CLICK" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info_white" />
</receiver>
<activity
android:name=".activity.Preferences"
android:label="@string/SettingsButtonContentDescription" />
<activity
android:name=".activity.SourcePreferences"
android:label="@string/PrefSources" />
<activity android:name="org.acra.CrashReportDialog"
android:theme="@android:style/Theme.Dialog"
android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true" />
<provider android:name=".providers.DuckDuckGoProvider"
android:authorities="com.duckduckgo.mobile.android.providers.DuckDuckGoProvider" />
<receiver android:name=".broadcast.DownloadReceiver">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
</intent-filter>
</receiver>
<activity android:name="info.guardianproject.onionkit.ui.CertDisplayActivity"
android:configChanges="locale|orientation"
android:theme="@android:style/Theme.Dialog"
android:taskAffinity="" />
<!--<activity android:name="net.hockeyapp.android.UpdateActivity" />-->
<service android:name="com.duckduckgo.mobile.android.subscribers.MainSubscriber" />
</application>
</manifest>