2010-01-02 19:30:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-03-04 07:13:00 -08:00
|
|
|
<!-- -*- compile-command: "ant install"; -*- -->
|
2010-01-02 19:30:20 +00:00
|
|
|
<!-- Copyright (C) 2007 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- Declare the contents of this Android application. The namespace
|
|
|
|
attribute brings in the Android platform namespace, and the package
|
|
|
|
supplies a unique name for the application. When writing your
|
|
|
|
own application, the package name must be changed from "com.example.*"
|
|
|
|
to come from a domain that you own or have control over. -->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.eehouse.android.xw4"
|
2011-08-21 12:07:45 -07:00
|
|
|
android:versionCode="26"
|
2011-04-25 20:46:23 -07:00
|
|
|
android:versionName="@string/app_version"
|
2010-01-02 19:30:20 +00:00
|
|
|
>
|
2010-06-06 09:04:08 -07:00
|
|
|
|
2010-01-25 02:20:32 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-01-06 08:08:36 -08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2010-01-25 02:20:32 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2011-02-23 07:39:14 -08:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2010-05-12 11:47:22 +00:00
|
|
|
|
2010-11-07 15:12:37 -08:00
|
|
|
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
|
2010-05-12 11:47:22 +00:00
|
|
|
|
2010-01-02 19:30:20 +00:00
|
|
|
<application android:icon="@drawable/icon48x48"
|
|
|
|
android:label="@string/app_name"
|
2011-02-28 20:07:07 -08:00
|
|
|
android:name=".XWApp"
|
2010-01-02 19:30:20 +00:00
|
|
|
>
|
|
|
|
|
2010-01-25 02:20:32 +00:00
|
|
|
<activity android:name="GamesList"
|
2010-10-08 17:33:44 -07:00
|
|
|
android:label="@string/title_games_list"
|
2011-07-13 18:42:03 -07:00
|
|
|
android:launchMode="singleTop"
|
2011-08-07 20:22:11 -07:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2010-10-08 17:33:44 -07:00
|
|
|
>
|
2010-01-02 19:30:20 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-03-14 05:01:55 +00:00
|
|
|
|
|
|
|
<activity android:name="DictsActivity"
|
|
|
|
android:label="@string/title_dicts_list"
|
2011-08-06 23:03:11 -07:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
/>
|
|
|
|
|
2011-05-06 06:52:10 -07:00
|
|
|
<activity android:name="NewGameActivity"
|
2011-06-10 22:51:54 -07:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
2011-05-06 06:52:10 -07:00
|
|
|
/>
|
|
|
|
|
2010-01-02 19:30:20 +00:00
|
|
|
<activity android:name="GameConfig"
|
|
|
|
android:screenOrientation="sensor"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
>
|
|
|
|
<intent-filter android:label="@string/resolve_edit">
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-26 14:38:31 +00:00
|
|
|
<activity android:name="PrefsActivity"
|
2010-04-25 03:37:52 +00:00
|
|
|
android:label="@string/title_prefs"
|
2010-01-26 14:38:31 +00:00
|
|
|
android:screenOrientation="sensor"
|
|
|
|
>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-02 19:30:20 +00:00
|
|
|
<activity android:name="BoardActivity"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
2011-03-11 19:07:05 -08:00
|
|
|
android:screenOrientation="portrait"
|
2011-03-14 18:32:36 -07:00
|
|
|
android:configChanges="keyboardHidden"
|
2010-01-02 19:30:20 +00:00
|
|
|
>
|
|
|
|
</activity>
|
2010-01-10 17:20:18 +00:00
|
|
|
|
2011-02-23 07:39:14 -08:00
|
|
|
<receiver android:name="RelayReceiver">
|
|
|
|
<intent-filter>
|
2011-02-28 18:36:47 -08:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2011-02-23 07:39:14 -08:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2010-08-19 08:45:18 -07:00
|
|
|
|
2011-07-13 18:42:03 -07:00
|
|
|
<activity android:name="DispatchNotify"
|
|
|
|
>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="newxwgame"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-10-12 18:28:05 -07:00
|
|
|
|
2010-03-13 23:10:58 +00:00
|
|
|
<!-- downloading dicts -->
|
|
|
|
<activity android:name=".DictImportActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@android:style/Theme.Dialog">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"></action>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"></category>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"></category>
|
2010-09-20 19:38:26 -07:00
|
|
|
<data android:scheme="file" android:host="*"
|
|
|
|
android:pathPattern=".*\\.xwd" />
|
|
|
|
<data android:scheme="http"
|
|
|
|
android:mimeType="application/x-xwordsdict"
|
|
|
|
android:host="*"
|
|
|
|
android:pathPattern=".*\\.xwd" />
|
2010-03-13 23:10:58 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2010-11-04 19:48:46 -07:00
|
|
|
<activity android:name="RelayGameActivity"/>
|
|
|
|
|
2011-02-21 06:51:47 -08:00
|
|
|
<activity android:name="ChatActivity"
|
|
|
|
/>
|
2011-02-16 06:55:46 -08:00
|
|
|
|
2011-02-21 18:12:15 -08:00
|
|
|
<service android:name="RelayService"/>
|
|
|
|
|
2010-01-02 19:30:20 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|