mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-22 07:28:16 +01:00
don't report NULL loc strings version
This commit is contained in:
parent
4f7ab4fd46
commit
2b7ffb3030
2 changed files with 0 additions and 5 deletions
|
@ -83,9 +83,6 @@ android {
|
|||
def stamp = Math.round(System.currentTimeMillis() / 1000)
|
||||
variant.buildConfigField "long", "BUILD_STAMP", "$stamp"
|
||||
|
||||
// FIX ME
|
||||
variant.buildConfigField "String", "STRINGS_HASH", "\"00000\""
|
||||
|
||||
variant.buildConfigField "short", "CLIENT_VERS_RELAY", "$INITIAL_CLIENT_VERS"
|
||||
|
||||
variant.buildConfigField "boolean", "FOR_FDROID", "$forFDroid"
|
||||
|
|
|
@ -71,7 +71,6 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
private static final String k_MQTTDEVID = "devid";
|
||||
private static final String k_DEBUG = "dbg";
|
||||
private static final String k_XLATEINFO = "xlatinfo";
|
||||
private static final String k_STRINGSHASH = "strings";
|
||||
private static final String k_UPGRADE_TITLE = "title";
|
||||
private static final String k_UPGRADE_BODY = "body";
|
||||
|
||||
|
@ -187,7 +186,6 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
|
||||
if ( 0 < params.length() ) {
|
||||
try {
|
||||
params.put( k_STRINGSHASH, BuildConfig.STRINGS_HASH );
|
||||
params.put( k_NAME, packageName );
|
||||
params.put( k_AVERS, versionCode );
|
||||
if ( LOG_QUERIES ) {
|
||||
|
|
Loading…
Reference in a new issue