remove redundant constant

This commit is contained in:
Eric House 2015-07-21 06:55:15 -07:00
parent 190ce42b0e
commit 9e533f82db
2 changed files with 1 additions and 2 deletions

View file

@ -136,7 +136,7 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
appParams.put( k_AVERS, versionCode );
appParams.put( k_GVERS, BuildConstants.GIT_REV );
appParams.put( k_GHASH, BuildConstants.GIT_HASH );
appParams.put( k_GHASH, context.getString( R.string.git_rev ) );
appParams.put( k_INSTALLER, installer );
if ( devOK( context ) ) {
appParams.put( k_DEVOK, true );

View file

@ -50,7 +50,6 @@ cat <<EOF > ${BUILD_DIR}/src/org/eehouse/android/${VARIANT}/BuildConstants.java
package org.eehouse.android.${VARIANT};
class BuildConstants {
public static final String GIT_REV = "$SHORTVERS";
public static final String GIT_HASH = "$GITHASH";
public static final String STRINGS_HASH = "$STRINGS_HASH";
public static final short CLIENT_VERS_RELAY = $CLIENT_VERS_RELAY;
public static final boolean CHAT_SUPPORTED = $CHAT_SUPPORTED;