Characteristics of android: how to find out about the report characteristics of your attachment. Services (secret) code for Android smartphones Android software for info phone

Golovna / Additional functionality

In this article, we can look at how to take information about the phone, sim card, measure style tie, as well as installing a display and a mobile phone battery.

Phone that stylnikova merezha

To access data about the phone, sim that stylnikovo merezhi The TelephonyManager class is vindicated. For the help of this class, you can select the type and style of the phone, the availability of the style of the SIM card.

1. An instance of the TelephonyManager class cannot be created without intermediary, for which it is necessary to call the getSystemService () method (from the Context class) and pass the Context.TELEPHONY_SERVICE constant to it.

  1. TelephonyManager tm = (TelephonyManager) getSystemService(Context .TELEPHONY_SERVICE ) ;

2. For some methods in the TelephonyManager class, the manifest file (AndroidManifest.xml) needs to be added to allow READ_PHONE_STATE (removing information about the telephone station) or ACCESS_COARSE_LOCATION (information about base station lace stitching). Let the manifest file be added like this:

  1. "http://schemas.android.com/apk/res/android"
  2. android:versionCode="1"
  3. android:versionName="1.0">
  4. "android.permission.READ_PHONE_STATE"/>
  5. "android.permission.ACCESS_COARSE_LOCATI ON"/>
  6. >
  7. >
  8. >

3. We wonder what kind of information we can take:
- int getCallState()- Signature ringer to the phone. Rotate one of the three constants: CALL_STATE_IDLE(phone not active) CALL_STATE_OFFHOOK(try vikliku), CALL_STATE_RINGING(Contact with the subscriber).

-int getPhoneType()- Specifies the type of mobile phone. Rotate one of the constants PHONE_TYPE_CDMA, PHONE_TYPE_GSM, PHONE_TYPE_NONE, PHONE_TYPE_SIP.

- int getNetworkType()- Decide on the type of stylnikovo merezha. Rotate one of the constants NETWORK_TYPE_UNKNOWN, NETWORK_TYPE_GPRS, NETWORK_TYPE_EDGE, NETWORK_TYPE_UMTS, NETWORK_TYPE_CDMA that in.

- String getNetworkCountryIso()- Turn the code of the country, in the same registration operator.

- String getNetworkOperator()- turn operator code (MCC+MNC) (mobile country code + mobile network code)

- String getNetworkOperatorName()- turn operator name

- String getDeviceId()- turn the ID of the mobile extension

- String getDeviceSoftwareVersion()- check the software version (not the android version)

-int getDataState()- Decide where the data will be transferred. Rotate one of the constants DATA_DISCONNECTED, DATA_CONNECTING, DATA_CONNECTED, DATA_SUSPENDED.

-int getDataActivity()- Shows the direct transmission of data. Rotate one of the constants DATA_ACTIVITY_NONE, DATA_ACTIVITY_IN, DATA_ACTIVITY_OUT, DATA_ACTIVITY_INOUT, DATA_ACTIVITY_DORMANT.

- boolean isNetworkRoaming()- indicate whether the phone is in roaming.

- CellLocation getCellLocation()- I will determine more precisely the position of the annex. Refers an instance to the CellLocation class, or rather one of the 1st class-packages CdmaCellLocation (for CDMA networks) or GsmCellLocation (for GSM networks). For the GsmCellLocation class, you can assign the ID of the base station of the style line (int getCid()) and the code of the territory in which the phone is located (int getLac()). For the CdmaCellLocation class, you can take the ID of the base station (int getBaseStationId()), as well as geographic coordinates (int getBaseStationLatitude(), int getBaseStationLongitude()).

- int getSimState()- Designate the sim card country. Rotate one of the constants SIM_STATE_UNKNOWN, SIM_STATE_ABSENT, SIM_STATE_PIN_REQUIRED, SIM_STATE_PUK_REQUIRED, SIM_STATE_NETWORK_LOCKED, SIM_STATE_READY.

- String getSimCountryIso()- Turn the country code of the provider

- String getSimOperator()- Turn operator code (MCC+MNC)

- String getSimOperatorName()- Turn the name of the provider

- String getSimSerialNumber()- Turn serial number SIM cards.

Display

To retrieve information about the display, I will add the DisplayMetrics class.
  1. DisplayMetrics metrics = New DisplayMetrics() ;
  2. getWindowManager() .getDefaultDisplay() .getMetrics (metrics) ;

In the first row, an instance of the DisplayMetrics class is assigned, and in the other row, the entire instance is initialized.
getWindowManager()(from the Activity class) – turn viconny manager(an example of the WindowManager class)
getDefaultDisplay()(from the WindowManager class) - rotates the display, on which the window manager creates windows (example for the Display class)
getMetrics()(For the Display class) - the method accepts an out-parameter of the DisplayMetrics type to retrieve the screen parameters.
That's why we need two rows of metrics to remove information about the display.

The DisplayMetrics class has the following fields:
densityDpi- Size of pixels on the screen (dpi)
scaled Density- scaling factor for fonts
heightPixels- Screen height
widthPixels- Screen width
xdpi
ydpi- Accurate number of pixels per inch across screen width

battery

To retrieve information about the battery, the BatteryManager class is selected. On the vіdmіnu vіd dvoh posterior vіpadkіv, I'm not going to use the service of the battery. The android system sends wide notifications (Broadcast) about changing the battery. We need to pay in advance for such support.
You can subscribe to a wide range of notifications for an additional method
registerReceiver(BroadcastReceiver receiver, IntentFilter filter), de
receiver - an instance of the degraded BroadcastReceiver class with an overridden OnReceive() method
filter - an instance of the IntentFilter class, which one you choose, which one you want to subscribe to.
  1. public void onCreate(Bundle savedInstanceState) (
  2. BroadcastReceiver receiver = new BroadcastReceiver() (
  3. @Override
  4. public void onReceive(Context context, Intent intent) (
  5. int status = intent.getIntExtra(BatteryManager.EXTRA_STATUS, -1);
  6. registerReceiver(receiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED ) ) ;

We subscribed to the ACTION_BATTERY_CHANGED notification, now when changing the battery of a mobile phone, the OnReceive method will be called. In this method, a change intent is passed, so that you can set Extra-parameters to give information about the battery.
It is possible to select these parameters using additional methods
int getIntExtra(String name, int defaultValue) or String getStringExtra(String name)
de name - parameter name
defaultValue - the value for the lock, if the parameter is not assigned.
These methods are used to rotate numeric or row parameter values ​​(the Intent class also has functions for float, double, etc., but in to this particular type we don't need the stink).

As the name of the parameter (name), one of the constants is passed to the BatteryManager class:

EXTRA_HEALTH- Battery mill. The value will be one of the upcoming constants:
BATTERY_HEALTH_DEAD- the battery is defective
BATTERY_HEALTH_GOOD- the battery is in good condition
BATTERY_HEALTH_OVERHEAT- battery overheated
BATTERY_HEALTH_OVER_VOLTAGE- the battery has increased voltage
BATTERY_HEALTH_UNKNOWN- camp nevidomy
BATTERY_HEALTH_UNSPECIFIED_FAILURE- battery is defective

EXTRA_ICON_SMALL- resource identifier for battery icons. Such a pictogram appears next to a mobile phone and shows the battery charge.

EXTRA_SCALE- maximum battery charge

EXTRA_LEVEL- current value of battery charge (value from 0 to EXTRA_SCALE)

EXTRA_STATUS- Indicates the battery charge. The value will be one of the upcoming constants:
BATTERY_STATUS_CHARGING- the battery is charging
BATTERY_STATUS_DISCHARGING- the battery is discharged
BATTERY_STATUS_FULL- battery is charged
BATTERY_STATUS_NOT_CHARGING- the battery is not charging
BATTERY_STATUS_UNKNOWN- camp is not visible

EXTRA_PLUGGED- sign the connection charger outbuilding. The value will be one of the upcoming constants:
BATTERY_PLUGGED_AC- connected to charger
BATTERY_PLUGGED_USB- connected to USB

EXTRA_PRESENT- Indicates the presence of the battery in the add-on (value type boolean)

EXTRA_TECHNOLOGY- battery technology, for example "Li-Ion". (Value type String)

EXTRA_TEMPERATURE- battery temperature

EXTRA_VOLTAGE- battery voltage

To remove information about the battery status, you need to add BATTERY_STATS to AndroidManifest.xml

"android.permission.BATTERY_STATS"/>

I won’t put the new code here, I’ll do it banal. With the last recall of all the descriptions of the methods, it is necessary to take the following:

You can use the SysManager program three times below. The supplement has 5 classes:
SysManagerActivity- smut in the program, three tabs are displayed. Reporting how to work tabs
TelManager- retrieval of information about the phone and sim card
ScrManager- retrieval of information about the display
BatManager- retrieval of information about the battery
For all three classes, the information is simply displayed in the text field.
TS- an additional class, with a bunch of static methods, like translating int constants to the TelephonyManager.NETWORK_TYPE_GPRS type in a row (GPRS).
Don't forget about addons and permissions on AndroidManifest.xml :)

For this traveler, it is easy to see the utilities for Android, as the functions of diagnostics and optimization of the system allow you to better understand how the resources are available.

You can, with reasonable skepticism, be put up to various optimists who know more about “tweakers” for desktop OS. However, it is not clear that similar programs should be blamed manually, the available tools of the Android OS do not allow the whole world to comprehensively capture information about processes, viconate a number of batch operations, and so on.

The main participants look around:

So will be guessed:

Assistant for Android - a toolbox for android optimization. The toolkit includes 18 basic system optimization functions. Among them are monitoring, process management and tasks, cleaning up of non-essential files, auto-loading manager, add-on manager and other components.

On the head side in real time, diagnostic information about the system is displayed, for example: processor, RAM, ROM, free space on the memory card internal memory phone. Add a number of widgets to the home screen for swedish access to the information, what to click.

At the “Monitoring” distribution, you can restore programs from RAM (startup manager) or clear the system for unnecessary data - the cache of time files in the system and installed programs, files in the log, empty files / folders and another "smite", which has been seen on the system. In addition, Assistant gives a list of time files on the memory card, selections corystuvac files beyond the scope, the type of information is too small.

The next part of the program - process management. Here you can take a look at the types of processes (assigned to different markings), memory and memory on the CPU, what it borrows, and the behavior of these processes - in that case, as a matter of fact, there are nutritional problems with system productivity. It is obvious how uncommon processes can be learned from memory.

The third section contains options that allow you to optimize the battery life of the add-on. At the upper part of the screen - keruvannya with laces, clearness, sound, vibration and other options (also available for additional system widgets). Trochs below are represented by different service programs, the difference when optimizing the system: package deletion / installation of programs, folding backup copy, moving programs to SD-card, autorun manager, file manager, information about the battery and system, setting rights. In general, obviously, there is nothing noteworthy here, and the main value of the extension is the availability of system functions in one distribution.

Summary. Assistant for Android is a traditional Android optimizer with a comprehensive set of functions. Vіn not to introduce anything important new and є just a comfortable shell for tuning the system. Of the main advantages - clumsy interface and the availability of marketing add-ons, batch operations with programs.

The System Info for Android program provides various service information for the Android operating system, which can be useful for further system optimization. Let's look at the main functions of the program.

On the system panel, information is available on the occupied space on the cards and memory, RAM, hours of work and network information (IP addresses, type of connection to the measure). For all that, it’s amazing that there are no cheap data for a processor and this kind of interest.

In the System tab, all information is presented in the text view. Vaughn does not stop until optimization and, at the same time, gives final information at any time Android systems, Hardware storage in general: OS, configuration, memory, battery and other aspects that affect productivity.

The next division, Tasks, allows you to review and “drive in” non-essential processes, take away information about the processor’s interest and memory. This section is three times shorter from a practical point of view, but for the sake of clarity, it looks like similar components in similar addenda. Sorting is, but the retailer did not transfer the color marking for processes or their categorization. Therefore, it is important to control the process behind the fact.

All Apps have been selected and installed system programs. Here you can treat the skin program individually, but also package operations (for example, installing that remote) daily as well.

Nareshti, rasdіl Logs can be shortened not only by coristuvachas, but also by retailers, if you want to test the program and want to take away the nagodzhuvalnuyu іnformatsiyu. Logs are updated in real time, you can save the history of the file.

As an option, you can add a widget to the home screen. The possibilities of yoga are more modest: you can display information about the battery charge, you can store RAM and use the space on the SD card.

Summary. In this rank, the addition of System Info for Android will be intimidating to the ordinary coristuvachs of the OS, often to retailers. Tse, shvidshe, a tool with an informational trick, which allows the real time to see the process, under the journal. Brown optimizatsii, pov'yazanih itself z nalashtuvannyam, here є lіchen іlkіstієyu.

Elixir 2 is a utility for removing system information, diagnostics, and adding additional widgets to the home screen.

Let's do some quiet functions, like in similar programs. Distributed "Information" to collect data about attachments: available disk space and RAM memory, processor speed, battery charge, telephony, more precisely roztashuvannya, screen and sound, robot mode, camera, outbuildings and etc.

Also mark the following additional functions, available through context menu. Elixir 2 exhibits functions, binds with a selected skin component. Let's say, having turned the processor into the menu, you can look at the data about your model, change the battery, change the CPU regulator. For a memory card, mounting, keruvannya programs are available. In this way, Elixir is propagated to achieve the logical arrangement of related system functions.

Dali in addition to the dispatcher of additions. Whom has the information about installed addenda, occupied by them the space that roztashuvannya. Expanded sorting is available (for example, for expanding the code or cache), є text filter. Manually those who can enable batch mode and quickly uninstall all non-essential programs.

One of the most prominent functional features of Elixir is the “Sensors” section. Obviously, here you can find out about the system data and the availability of available sensors on Android. Damn it, you can manually run tests to check for both minimal and peak tension.

In "Journals" you can see logcat and dmesg files in your logcat, and you can filter alerts (pardons/advance/information). Generated Elixir calls from system information are easy to send by e-mail.

Nasamkinets, the following is a sign of difference in widgets. For their activation and adjustment, it is necessary to install an add-on. All other add-ons (special, system, administrative and other) are installed optionally via Google Play.

Summary. Elixir 2 is one of the largest hard programs in its category, definitely recommended for installation. Allows you to use system resources, run diagnostics, add system resources. Vіdmіnі vіdmіnі vіdmіnі vіdnіnіnі sіdіnіnіnі sistemnymi komponentі, literate grupovanіnі funktsіy i vyavnіst vsgogo nebhіdnogo.

DU Battery Saver is a program for basic system optimization and battery saving. There is no such thing as subtle tweaks here, it’s even simpler and it’s unlikely that we’ll be able to tell the coristuvachas.

On the head side (“Battery”) there is information about the flow mill of the battery. If the attachment is being charged, you can determine the hour required for a full charge. In addition, you can take away some technical characteristics: temperature, voltage and battery capacity. On the graph, at the lower part of the screen, you can see the coristuvach, as if the battery charge was drained by the day after the battery level. From the point of the scale everything was understood, the prote of a special practical sense in it less, I wanted to take it out.

At the "Zberezhennya" branch - guarded by the modes of saving. Profiles can be described, so you can understand why it is planned to optimize the phone: calls, SMS, Internet and more. You can create your own profile from a dozen parameters. Koristuvacham paid version Battery Saver available t.z. "intellectual" mode: activation of wake-up, maintenance by programs, auto-vigilance, change of energy profiles by pushing the doby.

At the "Monitor" depositor, there is a decrease in energy by programs and possessions. Here you can clearly see that the battery is being charged the most, you can turn off the blame.

The Battery Saver program has other functions, but there are fewer clicks, plus, like other software retailers, other functions are daily advertising.

In case of failure free space on the phone non-required files, starting from the largest, the world has changed its size. DiskUsage - small system utility, as it helps to visually recognize that shvidko, how to take files and how many places to take on the memory card or to another dzherel.

Data appear on the diagram like color blocks, in proportion to the space occupied by it. Having pressed the song block, you can familiarize yourself with the files in the middle of the directory. In this rank, it became clear, de shukati "victorious" disk space.

Three additional program features - DiskUsage integrates with popular file managers such as OI FileManager and Astro.

One of the most popular utilities for accelerating the CPU is memory and, in a nutshell, the add-on manager. Mistit kіlka korisnyh modules, yakі priyat cleansing the system.

Otzhe, "Smіtya": you can clear the cache and different clock files from whom you share, as if they were leaving programs behind you. In addition, the clean-up mode of extensions allows you to display duplicate files that take up the most space on the disk.

Rozdіl "Priskorennya" allows you to call the memory of the phone, vivanting the programs on the background. At "Priskorenny" you can also go to the auto-startup section, which displays a list of programs that are active and that exclude autostart.

One more brown clean module Master – add-on manager. Here the programs are presented at the vibrators: the remaining ones are installed, rarely victorious, beyond the scope, categories and others. You can specify a few elements and see them in batch mode, which is more convenient. Of course, it is possible to create a backup copy and remove apk-installers and add-ons.

Clean Master Pleased with the information about the optimization and allow us to recognize: information about the occupied/changed megabytes is constantly displayed at the top of the program. True, the visual beauty, the animation is little to improve the add-on, and, paradoxically, the speed of the system is improved by itself through Clean Master. In addition, the program with add-on modules (antivirus, CM Family, etc.) is not for everyone.

In general, the Clean Master tweaker does a wonderful job. Wanting to move into the new a number of basic functions, the interface is important. And for the marriage of resources, logically, I would not want to change Android once again.

Supplement to popular retailers file manager ES Explorer. Just to go into the description, we have before us a larger universal supplement, a lower simple manager of a job. ES Task Manager allows you to save battery power, clear the memory of the add-on, vivantage, block or uninstall unwanted programs.

The main branch of Optimize has 4 buttons, which allow you to change the speed of your operation: recover from the memory of all programs, clear the cache, optimize the memory and reduce battery drain.

Another section of the manager is the “Director of the office” department. At the top, it shows the amount of available memory and batteries, gave a list launching addenda. Through the context menu, you can add the program to the blame or add it to the auto-completion list.

It is also possible to increase the cost of electricity savings. Here you can change the behavior of Android - turn it off or turn it off fence, set options for the screen, vibration and sound. In principle, the functions of standard system widgets are duplicated here.

Some modules, such as "SD Card Analyzer" and "Programs", are available only after installing the ES Explorer file manager.

Advanced Task Manager - a number of transfers for the functionality of the manager of the task, a little more efficient, lower standard.

On the main screen of the Task Manager, a list of current programs is displayed, information about the memory and battery of the phone. In addition, this information is duplicated in the notification panel through the widget. Programs can be seen from the list and mass vivantage of them from memory. In addition, if you transfer the primus vivantage from the RAM to the add-on, you can create vinyaty - dodatki, so as not to be twisted in the forced mode.

Row brown options appears in the settings of the Advanced Task Manager. At the first turn, tse auto-vivantation of the program on the screen: immediately after the screen is turned on, when the program is launched, from the set interval.

From the shortcomings of this manager - there is no sorting and detailed information about the involvement of the processor for the skin program. Also, the management of services is implemented through the system interface, which is not manual.

Smartphones without overkill can be called the most popular gadgets of modernity. It is important to know the people, like vikoristova zvichaina mobile phone without an operating system. Smart outbuildings on the operating system allow to expand communication capabilities add-ons, for example, to the fact that Skype can be installed on a smartphone, people can make video calls, and when a navigator is installed, they can set up their own mobile device like GPS navigation.

At the moment, the leading positions on the world market of smartphones are occupied by devices on the operating system Android and iOS. In the lands of the Soviet Union, for objective reasons, it is more important to buy more smartphones on the Android platform.

Why is it necessary to know the technical characteristics of a smartphone

For the robots to be installed, a productive system is required, at least a core processor and one gigabyte operational memory Moreover, if a person wants to speed up navigation, the extension is to blame for installing a GPS module, and if it needs a video link, the device is to blame for the mother's front camera.

All these parameters, zrozumіlo, indicated in the technical characteristics, I will add, but, unfortunately, far from all the parameters, as the nobility of the buyer is to blame.

For example, recently it became known, but it doesn’t mean that support for 32 bit programs should stick, but for the butt of 32 bit Windows, you can already understand that less and less retailers will be able to support old architecture. At the technical characteristics, the architecture of the processors is not specified.

In the last but not least important parameter, you can enter the video chip of your smartphone. Yak i v personal computer, the same as the productivity of the videoopidsystem and the device mobile games. For example, in some technical specifications and indicate information about the video chip, won't, as before, maybe not again, for example, in the technical data you can indicate the Mali-400 video chip, but different version, Mali-400 MP2, MP3 and MP4. Obviously, as a videochip is not the rest of the version, At technical characteristics about tse, svidshe for everything, zamovchuvatimut.

In addition, Android smartphones can pick up libraries, OpenGL (roughly, similar to DirectX on Windows). Chi varto say, scho vіd tsієї funktsії to lay pіdtrimka 3D іgor and rich other programs. But, as with a video chip, the compilers are not in a hurry to determine the technical characteristics of the OpenGL version. The result may look like this when you run VipadTime in a black screen.

Other parameters, which are not specified in the technical specifications, for example, lens lightness, magnetic sensor visibility, pixel width, screen refresh rate and more.

How to recognize the report characteristics of a smartphone

Understandably, sellers do not show all the characteristics of a smartphone, moreover, the parameters of some, small models of smartphones are unknown to the sellers themselves.

In other words, for fixing the technical data of the device, on the new necessary special service addendum, which denies access to all technical data software functions smartphone.

In order to more accurately set the characteristics on a smartphone, it is necessary to take away the rights of a supercorristor, so called.

Similar programs for mobile devices can be downloaded a lot, most of them can be downloaded free of charge from the Play Market.

The most popular information programs are: AIDA64, System Info Droid, CPU-Z and AnTuTu Benchmark.

Crimea of ​​small zovnіshnіh vіdmіnnosti, tsikh dodatkіv's functionality is similar.

Maybe, it's simpler and at once functional supplement V_d vіdomoy retailer. AIDA64 is the software of the retailers themselves, which releases AIDA64 on the computer.

Program interface vertical menu, selectable CPU, system, battery, Android, etc.

The skin of the menu should be checked by the public opinion.

CPU-Z

Like the PC version, CPU-Z is one of the most informative programs for setting the technical characteristics of the processor. Age processor model, ce vkrai important information for smartphones, the very type of the processor to lay down the quality of the sound, the speed of data processing and to install these other firmware.

The interface of the program is divided into a sprinkling of horizontal tabs, between which you can move with a swipe.

This program does not look much like the two in front, it is especially similar to CPU-Z. The advantage of Info Droid is more Detailed information about the audio chip, including embedded codecs and stereo modes, as well as camera parameters, such as maximum number frames per second, macro shots and more.

When viewed from previous programs, AnTuTu Benchmark scores the most important for smartphone performance testing. Behind the scenes, Benchmark has long been the benchmark for performance measurement Android Appliances, vtim, with skin new version, the program is becoming more and more powerful to the technical data of the device or the firmware version.

At the Іnfa branch you can look over technical information about a smartphone, but in comparison with other, listed other programs, Benchmark is definitely a program in informational content.

Pіdsumovuyuchi, sіd designate, scho declared tekhnіchnі pokazniki, tobto. The parameters, as stated in the window price, cannot characterize the attachments in a completely different way.

The only way to recognize the report parameters, to install special addendum, but hardly before buying a smartphone in a store, you are allowed to install programs on a new one. This is possible only when buying a used phone from hands.

It is recommended that before buying a new one, I will build it relativly on the specialized resources of the reviewer of the device, which, having become worthy of you, they installed one of the most listed programs and shared technical characteristics with other short coats

- an addendum that helps the coristuvachev to look at the internal characteristics of his mobile friend. By yourself with such a program, you can recognize the exact technical nuances of a smartphone and understand what you can say about it. So the program is more complicated, especially if you choose attachments and want to learn about yoga real possibilities. Koristuvatisya it is even easier, because the program breaks all the characteristics of the category.

I’ll need more than enough to provide you with a category, so that I can recognize the necessary data and work on the representation of the visnovka. Let's say that the program is already accurately indicated, all the characteristics and can help you in a number of specific diets. The majestic number of koristuvachs, out of joy, began to reconsider the parameters of their mobile attachments at once from such a miraculous addendum.


With such a program you can know the subtle technical knowledge, which does not always reveal the sellers. For example, the program will be in good hands in that case, as if there are similar models, but they are affected by insignificant technical parameters. For additional software, you can accurately install your own vіdminnіst and buy the same model, I'll build it, as if you're afraid.


The result is a miracle program that will give you the ability to take reference data about the internal parameters of your smartphone or tablet computer. For robotic programs, the Internet is not required.

How can I find out the characteristics of androids? Skіlki have new memory? Which processor is on my device? In this statute, we will proponuye you a little solution for vodpovidi on qi supply.

Buvaє so, scho zavantazhivshi program from the Internet (in APK format or from the add-on store);

It may be due to the fact that unlicensed software is often attacked by graphics processors find phone models. I in Incidentally, your smartphone does not support system software. With the minimum amount of information about the smartphone, you can find out:

  • after reading the instructions, the bula was put into the box with the device to be bought;
  • marveling at the installation of the phone and having read the information in the “About the phone” section (“Nalashtuvannya” -> “System” -> “About the phone”. On all outbuildings, there will be approximately such a path to the system information). І here you can dig around the tabs. You don’t take a clear link of the necessary, all the data will be scattered;
Photo: Information about the phone

  • speed up specialized program or utility for smartphone analysis.

Read the instruction search for information you can independently. M Well, it’s worth taking a look at the programs for displaying detailed information about characteristics android add.

AIDA64 (Zavantagity)

We already know AIDA as a bagat, but often a similar program for a PC is used to collect data about the sun. The addendum allows you to take a naming report structured information about android devices, including temperature, codecs, sensors, system folders, batteries. The data is richer and better for everything, more of them will be able to get out of their pockets, or they are specialists in the software security of smartphones. A simple coristuvachev simply does not need more than 60% of the information. Going through the tabs, you can get some information needed. Advertising is present, but it doesn’t matter.


Photo: AIDA64

CPU Z (Zavantageity)

For CPU Z, type xSoft Studio, the information is presented in a more readable and understandable way for an excellent looking look. Display, sensors, central processor, memory, attachments and more - everything is here. But, unfortunately, additional functions that are needed (for example: "Merezha") are available only after purchasing a new version of the program. Nayprostisha, simple program. There is nothing special and unique.


Photo: CPU Z

AnTuTu Benchmark (Zavantagity)

A wonderful program that allows you not only to marvel at the characteristics of android, but also to protest your device at the highest minds and compare it with other models. Characteristics seem to be less common, basic and intelligible. There are no zayvih and unreasonable abbreviations.

Testing is to be carried out for the help of the maximum drive of the central and graphics processor. The security of the transfer and the collection of data, both from the internal accumulator, and from the border, are covered.


Photo: AnTuTu Benchmark

Yak navantazhennya vikoristovuetsya vase, high poly 3D video. In the test world, the phone will get very hot. On weak outbuildings, the picture on the screen will move a lot. Don't fight, so you can fight. After completion, you will add an estimate in points, which will describe the equal characteristic practicality your device.


Photo: AnTuTu Benchmark

The test of selected 3D models is only possible after the installation of additional software AnTuTu 3DBench (Zavantage), what are the real extensions for the main supplement. Without expansion, you can just test. You can, for example, protest multitouch.


A photo: AnTuTu 3DBench

AnTuTu Benchmark introduces one more add-on extension AnTuTu Officer (Zavantageity). After problennya kіlkoh manipulation with the computer and the QR-code, it will show if your phone is “siry”.

Photo: AnTuTu Officer

Droid Info (Zavantage)

Good program what do you think information about possession characteristics android attachments. Shows more than the main characteristics with small extensions. The addendum is a working one, but it does not require any further additions (do not provide correct information, especially about new additions). The last update is dated 24 March 2016. It turns out that the retailers offered their creations, but darma. The interface is more convenient and simple, you can know the information you need in a few seconds. The possibility of nadsilati zvіt zvіt about attachments (at the sight of the text) on the mail screen is a marvelous function, but you can also need it.


Photo: Droid Info

CPU-Z type CPUID (Zapantage)

Practically identical to the Droid Info program, only English mine. On the other hand, CPU-Z is regularly updated and supported by retailers. The information is accurate and correct, everything is correct really. Those who do not know English language are better not to take advantage, technical names are too rich. Behind the meanings themselves, you can guess about the description of the description, but still don’t worry.


Photo: CPU-Z as CPUID

Geekbench 4 (Zavantage)

Another push tester productivity phone similar to AnTuTu Benchmark. Let me give you only the main characteristics of the android device: model, memory, firmware, graphics processor, number of cores, etc. May it be possible to carry out a re-verification practicality device for adventurousness. On the view of AnTuTu, the program does not allow additional installation of the extension.


Photo: Geekbench 4

Vibelyuchi a program to review the characteristics of your android, varto comes out of your own needs. What information is needed about the exact temperature values ​​shown by the sensors on the processor cores? Varto try all the programs and know what is necessary and most convenient, the most according to your needs.

Shanovni readers! Yakshcho you have lost food or comments on the topic of articles - be kind, deprive them below.

© 2022 androidas.ru - All about Android