up version info, and collapse two locations into one resource entry.

This commit is contained in:
Andy2 2011-04-25 20:46:23 -07:00
parent 024f7e0541
commit ecc5357ef8
4 changed files with 5 additions and 4 deletions

View file

@ -22,8 +22,8 @@
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="17"
android:versionName="4.4 beta 24"
android:versionCode="18"
android:versionName="@string/app_version"
>
<uses-permission android:name="android.permission.INTERNET" />

View file

@ -69,6 +69,8 @@
<!-- other -->
<string name="default_host">eehouse.org</string>
<string name="dict_url">http://eehouse.org/and_dicts_hh</string>
<string name="app_version">4.4 beta 25</string>
<!--string name="dict_url">http://10.0.2.2/~eehouse/and_dicts</string-->
<string-array name="board_sizes">

View file

@ -151,7 +151,7 @@ public class DlgDelegate {
final View view = factory.inflate( R.layout.about_dlg, null );
TextView vers = (TextView)view.findViewById( R.id.version_string );
vers.setText( String.format( m_activity.getString(R.string.about_versf),
XWConstants.VERSION_STR,
m_activity.getString(R.string.app_version),
GitVersion.VERS ) );
TextView xlator = (TextView)view.findViewById( R.id.about_xlator );

View file

@ -23,5 +23,4 @@ package org.eehouse.android.xw4;
public interface XWConstants {
public static final String GAME_EXTN = ".xwg";
public static final String DICT_EXTN = ".xwd";
public static final String VERSION_STR = "4.4 beta 24";
}