2010-01-02 20:30:20 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-03-04 16:13:00 +01:00
|
|
|
<!-- -*- compile-command: "ant install"; -*- -->
|
2010-01-02 20:30:20 +01: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"
|
2013-06-27 17:04:03 +02:00
|
|
|
android:versionCode="55"
|
2011-04-26 05:46:23 +02:00
|
|
|
android:versionName="@string/app_version"
|
2010-01-02 20:30:20 +01:00
|
|
|
>
|
2010-06-06 18:04:08 +02:00
|
|
|
|
2013-07-08 16:13:04 +02:00
|
|
|
<!-- BE SURE TO MODIFY project.project AND the variable TARGET in
|
|
|
|
../scripts/setup_local_props.sh if targetSdkVersion changes!!!
|
|
|
|
-->
|
2013-06-04 16:29:40 +02:00
|
|
|
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11" />
|
2012-11-05 15:55:54 +01:00
|
|
|
|
2013-06-26 05:03:03 +02:00
|
|
|
<supports-screens android:resizeable="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true"
|
|
|
|
/>
|
2012-11-05 15:55:54 +01:00
|
|
|
|
2010-01-25 03:20:32 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-01-06 17:08:36 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2010-01-25 03:20:32 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2011-02-23 16:39:14 +01:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2012-10-15 17:29:46 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2012-01-19 03:30:53 +01:00
|
|
|
|
2013-06-27 16:58:02 +02:00
|
|
|
<uses-feature android:name="android.hardware.telephony"
|
2013-06-26 05:03:03 +02:00
|
|
|
android:required = "false"
|
|
|
|
/>
|
|
|
|
|
2012-11-02 13:35:31 +01:00
|
|
|
<!-- GCM stuff -->
|
|
|
|
<permission android:name="org.eehouse.android.xw4.permission.C2D_MESSAGE"
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="org.eehouse.android.xw4.permission.C2D_MESSAGE" />
|
|
|
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2010-05-12 13:47:22 +02:00
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
<application android:icon="@drawable/icon48x48"
|
|
|
|
android:label="@string/app_name"
|
2011-03-01 05:07:07 +01:00
|
|
|
android:name=".XWApp"
|
2010-01-02 20:30:20 +01:00
|
|
|
>
|
|
|
|
|
2010-01-25 03:20:32 +01:00
|
|
|
<activity android:name="GamesList"
|
2012-02-28 04:38:27 +01:00
|
|
|
android:label="@string/app_name"
|
2011-12-17 04:02:20 +01:00
|
|
|
android:launchMode="standard"
|
2011-08-08 05:22:11 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2010-10-09 02:33:44 +02:00
|
|
|
>
|
2010-01-02 20:30:20 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2010-03-14 06:01:55 +01:00
|
|
|
|
|
|
|
<activity android:name="DictsActivity"
|
|
|
|
android:label="@string/title_dicts_list"
|
2011-08-07 08:03:11 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
/>
|
|
|
|
|
2011-05-06 15:52:10 +02:00
|
|
|
<activity android:name="NewGameActivity"
|
2011-06-11 07:51:54 +02:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
2012-08-16 17:14:50 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2011-05-06 15:52:10 +02:00
|
|
|
/>
|
2012-10-15 17:29:46 +02:00
|
|
|
<activity android:name="SMSInviteActivity"
|
|
|
|
android:theme="@android:style/Theme.Dialog"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
/>
|
2011-05-06 15:52:10 +02:00
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
<activity android:name="GameConfig"
|
|
|
|
android:screenOrientation="sensor"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
>
|
2011-09-16 03:05:45 +02:00
|
|
|
<intent-filter>
|
2010-01-02 20:30:20 +01:00
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-26 15:38:31 +01:00
|
|
|
<activity android:name="PrefsActivity"
|
2010-04-25 05:37:52 +02:00
|
|
|
android:label="@string/title_prefs"
|
2010-01-26 15:38:31 +01:00
|
|
|
android:screenOrientation="sensor"
|
2012-07-24 07:36:50 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
/>
|
2010-01-26 15:38:31 +01:00
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
<activity android:name="BoardActivity"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
2011-03-12 04:07:05 +01:00
|
|
|
android:screenOrientation="portrait"
|
2011-03-15 02:32:36 +01:00
|
|
|
android:configChanges="keyboardHidden"
|
2012-07-24 07:36:50 +02:00
|
|
|
/>
|
2010-01-10 18:20:18 +01:00
|
|
|
|
2012-03-08 16:58:19 +01:00
|
|
|
<activity android:name="LookupActivity"
|
2012-03-08 16:54:36 +01:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
android:theme="@android:style/Theme.Dialog"
|
|
|
|
/>
|
|
|
|
|
2011-02-23 16:39:14 +01:00
|
|
|
<receiver android:name="RelayReceiver">
|
|
|
|
<intent-filter>
|
2011-03-01 03:36:47 +01:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2012-08-16 16:43:57 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name="UpdateCheckReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2011-02-23 16:39:14 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2010-08-19 17:45:18 +02:00
|
|
|
|
2012-11-26 14:41:42 +01:00
|
|
|
<activity android:name="DispatchNotify">
|
2011-07-14 03:42:03 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="newxwgame"/>
|
|
|
|
</intent-filter>
|
2012-11-26 14:41:42 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http"
|
2012-11-28 15:30:35 +01:00
|
|
|
android:host="@string/invite_host"
|
|
|
|
android:pathPrefix="@string/invite_prefix"
|
|
|
|
/>
|
2012-11-26 14:41:42 +01:00
|
|
|
</intent-filter>
|
2012-11-29 17:19:07 +01:00
|
|
|
|
2012-12-04 08:10:31 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:mimeType="@string/invite_mime" />
|
|
|
|
</intent-filter>
|
2011-07-14 03:42:03 +02:00
|
|
|
</activity>
|
2010-10-13 03:28:05 +02:00
|
|
|
|
2010-03-14 00:10:58 +01: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-21 04:38:26 +02: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-14 00:10:58 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2010-11-05 03:48:46 +01:00
|
|
|
<activity android:name="RelayGameActivity"/>
|
2011-11-03 13:32:36 +01:00
|
|
|
<activity android:name="DictBrowseActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
/>
|
2011-11-04 15:11:34 +01:00
|
|
|
<activity android:name="ChatActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
/>
|
2011-02-16 15:55:46 +01:00
|
|
|
|
2011-02-22 03:12:15 +01:00
|
|
|
<service android:name="RelayService"/>
|
|
|
|
|
2011-09-13 03:28:43 +02:00
|
|
|
<receiver android:name=".MountEventReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_MOUNTED" />
|
|
|
|
<data android:scheme="file" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_EJECT" />
|
|
|
|
<data android:scheme="file" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2012-10-15 17:29:46 +02:00
|
|
|
<receiver android:name="SMSReceiver" >
|
|
|
|
<intent-filter android:priority="999" >
|
|
|
|
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<service android:name="SMSService"/>
|
|
|
|
|
2012-11-02 13:35:31 +01:00
|
|
|
<receiver android:name="com.google.android.gcm.GCMBroadcastReceiver"
|
|
|
|
android:permission="com.google.android.c2dm.permission.SEND" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
|
|
|
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
|
|
|
<category android:name="org.eehouse.android.xw4" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<service android:name=".GCMIntentService" />
|
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|