Take screenshots from both devices and merge them
Recently I had to compare two versions of the app. I had Huawei and Samsung devices. Instead do it manually I made some research and I created script for that:…
Recently I had to compare two versions of the app. I had Huawei and Samsung devices. Instead do it manually I made some research and I created script for that:…
public static JSONObject concat(@NonNull JSONObject objs) { ArrayList<JSONObject> jsonObjectArrayList = new ArrayList<>(); for (JSONObject o : objs) { if (o.length() > 0) { jsonObjectArrayList.add(o); } } JSONObject merged = new…