This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
AndroidManifest.xml
73 lines (67 loc) · 3.3 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="aarddict.android"
android:versionCode="26"
android:versionName="1.6.11"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
<application android:allowBackup="true"
android:icon="@drawable/aarddict"
android:label="@string/appName">
<activity android:name=".DictionariesActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
android:label="@string/appName">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:pathPattern=".*\\.aar"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:mimeType="application/aar"/>
</intent-filter>
</activity>
<activity android:name=".LookupActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".ArticleViewActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize">
</activity>
<activity android:name=".Lookup"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
android:excludeFromRecents="true"
android:taskAffinity="aarddict.external">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
</activity>
<activity android:name=".Article"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
android:excludeFromRecents="true"
android:taskAffinity="aarddict.external">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<activity android:name=".DictionaryInfoActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"/>
<service android:name=".DictionaryService">
</service>
</application>
</manifest>