mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
remove redundant constant
This commit is contained in:
parent
190ce42b0e
commit
9e533f82db
2 changed files with 1 additions and 2 deletions
|
@ -136,7 +136,7 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
appParams.put( k_AVERS, versionCode );
|
appParams.put( k_AVERS, versionCode );
|
||||||
appParams.put( k_GVERS, BuildConstants.GIT_REV );
|
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 );
|
appParams.put( k_INSTALLER, installer );
|
||||||
if ( devOK( context ) ) {
|
if ( devOK( context ) ) {
|
||||||
appParams.put( k_DEVOK, true );
|
appParams.put( k_DEVOK, true );
|
||||||
|
|
|
@ -50,7 +50,6 @@ cat <<EOF > ${BUILD_DIR}/src/org/eehouse/android/${VARIANT}/BuildConstants.java
|
||||||
package org.eehouse.android.${VARIANT};
|
package org.eehouse.android.${VARIANT};
|
||||||
class BuildConstants {
|
class BuildConstants {
|
||||||
public static final String GIT_REV = "$SHORTVERS";
|
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 String STRINGS_HASH = "$STRINGS_HASH";
|
||||||
public static final short CLIENT_VERS_RELAY = $CLIENT_VERS_RELAY;
|
public static final short CLIENT_VERS_RELAY = $CLIENT_VERS_RELAY;
|
||||||
public static final boolean CHAT_SUPPORTED = $CHAT_SUPPORTED;
|
public static final boolean CHAT_SUPPORTED = $CHAT_SUPPORTED;
|
||||||
|
|
Loading…
Reference in a new issue