2010-01-02 20:30:20 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- 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"
|
|
|
|
>
|
2010-01-25 03:20:32 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2010-02-09 15:33:04 +01:00
|
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
2010-01-25 03:20:32 +01:00
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
<application android:icon="@drawable/icon48x48"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
>
|
|
|
|
|
2010-01-25 03:20:32 +01:00
|
|
|
<activity android:name="GamesList"
|
|
|
|
android:label="@string/title_games_list">
|
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>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<action android:name="android.intent.action.PICK" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="vnd.android.cursor.dir/vnd.google.note" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/vnd.eehouse.org.game" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity android:name="GameConfig"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
|
|
|
android:label="@string/title_game"
|
|
|
|
android:screenOrientation="sensor"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
>
|
|
|
|
<!-- This filter says that we can view or edit the data of
|
|
|
|
a single note -->
|
|
|
|
<intent-filter android:label="@string/resolve_edit">
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-26 15:38:31 +01:00
|
|
|
<activity android:name="PrefsActivity"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
|
|
|
android:label="@string/title_game"
|
|
|
|
android:screenOrientation="sensor"
|
|
|
|
>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-25 03:20:32 +01:00
|
|
|
<activity android:name="DictActivity"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
|
|
|
android:label="@string/title_game"
|
|
|
|
android:screenOrientation="sensor"
|
|
|
|
>
|
|
|
|
</activity>
|
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
<activity android:name="BoardActivity"
|
|
|
|
android:theme="@android:style/Theme.Light"
|
|
|
|
android:label="@string/title_game"
|
|
|
|
android:screenOrientation="sensor"
|
2010-01-25 03:20:32 +01:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2010-01-02 20:30:20 +01:00
|
|
|
>
|
|
|
|
</activity>
|
2010-01-10 18:20:18 +01:00
|
|
|
|
2010-02-09 15:33:04 +01:00
|
|
|
<receiver android:name="StatusReceiver"
|
|
|
|
>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name="ReceiveNBS"
|
|
|
|
android:enabled="true">
|
|
|
|
<intent-filter>
|
|
|
|
<!--action android:name="android.provider.Telephony.SMS_RECEIVED" /-->
|
|
|
|
<action android:name="android.intent.action.DATA_SMS_RECEIVED" />
|
|
|
|
<data android:scheme="sms" />
|
|
|
|
<data android:host="localhost" />
|
|
|
|
<data android:port="127" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|