forked from aarddict/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
59 lines (52 loc) · 2.58 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="aarddict.android"
android:versionCode="13"
android:versionName="1.4.1">
<uses-sdk android:minSdkVersion="3"/>
<application android:icon="@drawable/aarddict"
android:label="@string/appName">
<activity android:name=".DictionariesActivity"
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="orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".ArticleViewActivity" android:windowSoftInputMode="stateHidden"
android:configChanges="orientation">
</activity>
<activity android:name=".Lookup"
android:configChanges="orientation"
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="orientation"
android:excludeFromRecents="true"
android:taskAffinity="aarddict.external">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
</activity>
<activity android:name=".DictionaryInfoActivity"/>
<service android:name=".DictionaryService">
</service>
</application>
</manifest>