mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-10 05:26:10 +01:00
29 lines
981 B
XML
29 lines
981 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.eehouse.android.xw4"
|
|
>
|
|
|
|
<!-- Added for wifi-direct; don't ship until move to 23!!! -->
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
|
<!-- for crittercism -->
|
|
<uses-permission android:name="android.permission.GET_TASKS"/>
|
|
|
|
<application android:icon="@drawable/icon48x48"
|
|
android:label="@string/app_name"
|
|
android:name=".XWApp"
|
|
android:theme="@style/AppTheme"
|
|
>
|
|
|
|
<!-- NOT in the non-d version -->
|
|
<meta-data android:name="io.fabric.ApiKey" android:value="${FABRIC_API_KEY}" />
|
|
|
|
<activity android:name="WiDirInviteActivity"
|
|
android:label="@string/p2p_invite_title"
|
|
/>
|
|
|
|
<service android:name="WiDirService" />
|
|
|
|
</application>
|
|
</manifest>
|