Sujet : Re: Capturing "About Phone" Info to a File?
De : marion (at) *nospam* facts.com (Marion)
Groupes : comp.mobile.androidDate : 18. May 2025, 22:46:23
Autres entêtes
Organisation : BWH Usenet Archive (https://usenet.blueworldhosting.com)
Message-ID : <100dkfe$1sh2$1@nnrp.usenet.blueworldhosting.com>
References : 1 2
User-Agent : MacSOUP/2.8.5 (ea919cf118) (Mac OS 10.12.6)
On Sun, 18 May 2025 21:23:24 +0100, Andy Burns wrote :
Is there a way to capture the "About Phone" info to a file that I can send
as eMail? Screenshots can only get it in bits.
Are you sure your phone's screenshot utility doesn't have the ability to
grow or shrink the captured area after the initial shot is taken?
On mine you take the screenshot in the usual way (PWR and VOL-) then
there's an icon with arrows at the bottom next to the sharing and edit
icons.
It's a complete waste of my energy to answer any of the OP's questions;
however for the others here who care to know the answers, it's easy to do.
While one can OCR for free with Irfanview on Windows it's probably easier
to use adb to spit out the "About Phone" information to a text on Windows.
C:\> adb shell getprop > about_phone_info.txt
For specific keywords, one can grep for the desired strings:
C:\> adb shell getprop | findstr version.release
C:\> adb shell getprop | findstr ro.product.model
C:\> adb shell getprop | gsm.version.baseband
etc.
In addition, I have a whole bunch of system-reporting apps, some of which
have an output "Save As" option. Some of those reporting apps I have are
AUDA64, DevCheck, Device Info, Device Info Hardware, Treble Info, Inware,
CPU Info, CPU-Z and a few others, but since Stan isn't reading this,
there's no good reason for me to delve further other than to help those who
can be helped.