new quickie release to fix Play Store filtering out devices without

phones -- or so I think.  Make SMS optional, and up version strings.
This commit is contained in:
Eric House 2013-06-25 20:03:03 -07:00
parent c31a1d98df
commit 8cb89976cb
4 changed files with 27 additions and 14 deletions

View file

@ -22,11 +22,18 @@
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"
android:versionCode="52"
android:versionCode="53"
android:versionName="@string/app_version"
>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8" />
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="10" />
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@ -38,6 +45,19 @@
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-feature android:name="android.permission.VIBRATE"
android:required = "false"
/>
<uses-feature android:name="android.permission.RECEIVE_SMS"
android:required = "false"
/>
<uses-feature android:name="android.permission.SEND_SMS"
android:required = "false"
/>
<uses-feature android:name="android.permission.READ_SMS"
android:required = "false"
/>
<!-- GCM stuff -->
<permission android:name="org.eehouse.android.xw4.permission.C2D_MESSAGE"
android:protectionLevel="signature" />

View file

@ -10,4 +10,4 @@
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-8
target=android-10

View file

@ -5,21 +5,14 @@
</style>
</head>
<body>
<b>Crosswords 4.4 beta 60 release</b>
<b>Crosswords 4.4 beta 61 release</b>
<h3>New with this release</h3>
<ul>
<li>Allow alternate spellings for tiles in the Find field in the
wordlist browser, e.g. 'a' for 'A' and 'L-L' for 'L&middot;L' (in
Catalan). The new wordlist format requires this upgrade, so I will
wait a few weeks before releasing new wordlists. </li>
<li>Upgrade built-in English wordlists.</li>
<li>Change manifest to make SMS optional, allowing installation on
tablets and other devices without phones.</li>
<li>Don&apos;t run SMSService if play via SSM is disabled</li>
<li>Fix bug with invites to SMS games where invitee is missing
wordlist</li>
</ul>
<h3>Next up</h3>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_version">4.4 beta 60</string>
<string name="app_version">4.4 beta 61</string>
</resources>