-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
49 lines (49 loc) · 2.22 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dahl.brendan.wordsearch.view"
android:installLocation="auto"
android:versionName="2.3.4" android:versionCode="125">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".WordSearchActivity" android:label="@string/app_name"
android:theme="@style/themeBase"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".CrashActivity" android:theme="@style/themeBase"
android:windowSoftInputMode="adjustResize" />
<provider android:name=".WordDictionaryProvider"
android:authorities="com.brendan.dahl.wordsearch.provider.words" />
<activity android:name=".WordListActivity" android:label="@string/wordlist_name"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.dahl.brendan.word" />
</intent-filter>
</activity>
<activity android:name=".TutorialActivity" android:label="@string/tutorial"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<activity android:name=".WordSearchPreferences"
android:theme="@android:style/Theme.Dialog" android:label="@string/options">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<service android:name=".IOService" />
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
</manifest>