Cloud sync: IAB info

This commit is contained in:
M66B
2023-01-28 19:54:16 +01:00
parent 2a62fc33a3
commit 70e1cd40fb
3 changed files with 14 additions and 0 deletions

View File

@@ -84,6 +84,15 @@ public class CloudSync {
return;
JSONObject jrequest = new JSONObject();
if ("login".equals(command)) {
String iab_json = prefs.getString("iab_json", null);
String iab_signature = prefs.getString("iab_signature", null);
if (!TextUtils.isEmpty(iab_json) & !TextUtils.isEmpty(iab_signature)) {
Log.i("Cloud IAB " + iab_json);
jrequest.put("iab_json", iab_json);
jrequest.put("iab_signature", iab_signature);
}
}
EntityLog.log(context, EntityLog.Type.Cloud, "Cloud request=" + command);
if ("sync".equals(command)) {