Skip to content

Commit

Permalink
Tweak availability; bump version code.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisboyle committed Nov 7, 2014
1 parent fbc2b84 commit d0082a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

defaultConfig {
applicationId "name.boyle.chris.sgtpuzzles"
versionCode 95
versionCode 96
versionName "${timestamp()}-${idForSimon()}"

if (file(ndkDir.absolutePath + '/platforms/android-15').exists()) { // the last without PIE
Expand Down
7 changes: 3 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
package="name.boyle.chris.sgtpuzzles"
android:installLocation="auto" tools:ignore="UnusedAttribute"
xmlns:tools="http://schemas.android.com/tools">
<!-- You must be able to navigate and enter numbers, so: { 5-way and keyboard } or touchscreen -->
<uses-configuration android:reqFiveWayNav="true" android:reqKeyboardType="qwerty" />
<uses-configuration android:reqFiveWayNav="true" android:reqKeyboardType="twelvekey" />
<uses-configuration android:reqTouchScreen="finger" />
<supports-screens tools:ignore="UnusedAttribute"
android:xlargeScreens="true"
android:largeScreens="true"
Expand All @@ -18,6 +14,9 @@
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /><!-- needed even after 18 for received Bluetooth files :-( -->
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc" android:required="false" />
<!-- Require something mouse-like, at least for Untangle - and for number-entry games this means you'll have a usable keyboard either on-screen or physically -->
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<uses-feature android:name="android.hardware.faketouch" android:required="true" />
<application android:icon="@drawable/icon" android:logo="@drawable/ic_action_bar"
android:label="@string/app_name"
android:backupAgent=".BackupAgent" android:allowBackup="true" tools:ignore="UnusedAttribute">
Expand Down

0 comments on commit d0082a8

Please sign in to comment.