mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
add missing AndroidManifest.xml files for new variants
This commit is contained in:
parent
9ae77bce13
commit
efb6a93d7c
2 changed files with 39 additions and 0 deletions
29
xwords4/android/app/src/xw4dNoSMS/AndroidManifest.xml
Normal file
29
xwords4/android/app/src/xw4dNoSMS/AndroidManifest.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?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>
|
10
xwords4/android/app/src/xw4fdroid/AndroidManifest.xml
Normal file
10
xwords4/android/app/src/xw4fdroid/AndroidManifest.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.eehouse.android.xw4"
|
||||
>
|
||||
|
||||
<!-- GooglePlay version no longer allowed to have these, so they
|
||||
must be added per-variant !-->
|
||||
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
||||
<uses-permission android:name="android.permission.SEND_SMS" />
|
||||
</manifest>
|
Loading…
Reference in a new issue