mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
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:
parent
c31a1d98df
commit
8cb89976cb
4 changed files with 27 additions and 14 deletions
|
@ -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" />
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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·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'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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue