From 9911120d0d3a16889eb276a6237f143b2746f32c Mon Sep 17 00:00:00 2001 From: Mis012 Date: Sat, 31 Dec 2022 17:16:55 +0100 Subject: [PATCH] README.md: add a "Tips" section --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3c231468..b0d5899d 100644 --- a/README.md +++ b/README.md @@ -120,3 +120,7 @@ A: - especially implement the alternatives to GLSurfaceView (using SurfaceView to get an EGL surface, native activity, not sure if there are others?) which would allow us to support a few more 99%-native applications with relative ease - explore using bubblewrap to enforce the security policies that google helpfully forces apps to comply with (and our own security policies, like no internet access for apps which really shouldn't need it and are not scummy enough to refuse to launch without it) + +##### Tips: + +- the correct format for changing verbosity of messages going through android's logging library is `ANDROID_LOG_TAGS=*:v` (where `*` is "all tags" and `v` is "verbosity `verbose` or lesser"