mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +01:00
add to upgrade state info whether build is debug or release
This commit is contained in:
parent
aeae648afc
commit
6379df0cdf
1 changed files with 2 additions and 0 deletions
|
@ -75,6 +75,7 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
private static final String k_URL = "url";
|
||||
private static final String k_PARAMS = "params";
|
||||
private static final String k_DEVID = "did";
|
||||
private static final String k_DEBUG = "dbg";
|
||||
private static final String k_XLATEINFO = "xlatinfo";
|
||||
private static final String k_STRINGSHASH = "strings";
|
||||
|
||||
|
@ -156,6 +157,7 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
|
|||
}
|
||||
params.put( k_APP, appParams );
|
||||
params.put( k_DEVID, XWPrefs.getDevID( context ) );
|
||||
params.put( k_DEBUG, BuildConfig.DEBUG );
|
||||
} catch ( org.json.JSONException jse ) {
|
||||
DbgUtils.loge( jse );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue