get 'svn' out of the version string variable

Conflicts:

	xwords4/android/XWords4/src/org/eehouse/android/xw4/XWApp.java
This commit is contained in:
Andy2 2011-12-21 18:35:14 -08:00
parent f475356c87
commit 75f79ee036
3 changed files with 4 additions and 4 deletions

View file

@ -303,7 +303,7 @@
android:defaultValue="false"
/>
<EditTextPreference android:title="@string/git_rev_title"
android:summary="@string/git_rev_gen"
android:summary="@string/git_rev"
android:enabled="false"
/>
</PreferenceScreen>

View file

@ -28,8 +28,8 @@ public class XWApp extends Application {
public void onCreate()
{
DbgUtils.logEnable( this );
DbgUtils.logf( "XWApp.onCreate(); svn_rev=%s",
getString(R.string.git_rev_gen) );
DbgUtils.logf( "XWApp.onCreate(); git_rev=%s",
getString(R.string.git_rev) );
RelayReceiver.RestartTimer( this );

View file

@ -13,7 +13,7 @@ cat <<EOF > android/XWords4/res/values/git_string.xml
<!-- auto-generated; do not edit -->
<resources>
<string name="git_rev_gen">$GITVERSION</string>
<string name="git_rev">$GITVERSION</string>
</resources>
EOF