mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-02 20:46:15 +01:00
671d345377
What's here is merged with the main one, so no point in duplicating and it's just a pain to maintain. Remove as much as possible that's not unique to the debug variant (crashlytics and wifidirect, basically.)
29 lines
980 B
XML
29 lines
980 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>
|