Added: Add MAX_PHANTOM_PROCESSES and DEVICE_CONFIG_SYNC_DISABLED value to device info output like shown in Termux About page

Related commit b6963035
This commit is contained in:
agnostic-apollo
2022-06-12 02:50:38 +05:00
parent b69630355a
commit c2ddc23ae5
7 changed files with 35 additions and 8 deletions

View File

@@ -106,6 +106,10 @@ public class MarkdownUtils {
public static String getLiteralSingleLineMarkdownStringEntry(String label, Object object, String def) {
return "**" + label + "**: " + (object != null ? object.toString() : def) + " ";
}
public static String getSingleLineMarkdownStringEntry(String label, Object object, String def) {
if (object != null)
return "**" + label + "**: " + getMarkdownCodeForString(object.toString(), false) + " ";