ready for interim release

up version strings and make a toast DEBUG-only
This commit is contained in:
Eric House 2016-08-29 06:33:27 -07:00
parent d7acdc4a93
commit cd0de1daa7
4 changed files with 9 additions and 6 deletions

View file

@ -22,7 +22,7 @@
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="104"
android:versionCode="105"
android:versionName="@string/app_version"
>

View file

@ -13,10 +13,11 @@
</style>
</head>
<body>
<h2>Crosswords 4.4.109 release</h2>
<h2>Crosswords 4.4.110 release</h2>
<p>This release adds experimental support for side-by-side views on
tablets.</p>
<p>This release fixes a couple of rare crashes added by the last
release. That release's experimental support for side-by-side
views on tablets remains the focus.</p>
<div id="survey">
<p>Please <a href="https://www.surveymonkey.com/s/GX3XLHR">take

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_version">4.4.109</string>
<string name="app_version">4.4.110</string>
</resources>

View file

@ -445,7 +445,9 @@ public class MainActivity extends XWActivity
safeAddFragment( fragment, parentName );
}
};
DbgUtils.showf( this, "Putting off fragment construction" );
if ( BuildConfig.DEBUG ) {
DbgUtils.showf( this, "Putting off fragment construction" );
}
}
}