Android Studio includes an APK Analyzer that provides immediate insight into thecomposition of your APK after the build process completes. Using the APKAnalyzer can reduce the time you spend debugging issues with DEX files andresources within your app, and help reduce your APK size. It's also availablefrom the command line withapkanalyzer
. Bluestacks for win8 32bit.
With the APK Analyzer, you can accomplish the following:
- Duplicate Files Fixer and Remover v4.5.2.45 Pro APK Latest January 1, 2021 0 Comments Systweak Duplicate Files Fixer is a duplicate file finder and remover app that scans and deletes all types of duplicate files on your Android device.
- The names of the.apk's may be difficult to find and recognize in the list. For instance, the apk for Astro is named com.metago.astro.apk It is often easier to find the.apk for an app by looking for the app icon in the list than by looking for the name of the app.
Tap the menu button on upper left corner, and select Internal memory (or other storages), then open a folder. Tap the bottom bar to save the extracted APK file to the folder. You should be able to find the extracted APK files from the folder you selected on Step 7. APK Analyzer's DEX file viewer gives you immediate access to the underlying information in the DEX file(s) in your app. Class, package, total reference, and declaration counts are provided within the viewer, which can assist in deciding whether to use multidex or how to remove dependencies to get below the 64K DEX limit. Download APK (9.4 MB) Versions Using APKPure App to upgrade Duplicate Files Fixer, fast, free and save your internet data. The description of Duplicate Files Fixer 'Duplicate Files Fixer' finds and removes duplicate files from your Android device so that you can recover additional storage space without much ado.
- View the absolute and relative size of files in the APK, such as the DEX andAndroid resource files.
- Understand the composition of DEX files.
- Quickly view the final versions of files in the APK, such as the
AndroidManifest.xml
file. - Perform a side-by-side comparison of two APKs.
There are three ways to access the APK Analyzer when a project is open:
- Drag an APK into the Editor window of Android Studio.
- Switch to the Project perspective in the Project window and thendouble-click the APK in the default
build/output/apks/
directory. - Select Build > Analyze APK in the menu bar and then select your APK.
View file and size information
APKs are files that follow the ZIP file format. The APK Analyzer displays eachfile or folder as an entity with expansion functionality available to navigateinto folders. The hierarchy of the entities mirrors the structure of the filesand folders in the APK file.
APK Analyzer shows raw file size and download file size values for each entity,as shown in figure 1. Raw File Size represents the unzipped size of theentity on disk while Download Size represents the estimated compressed sizeof the entity as it would be delivered by Google Play. The % of Total DownloadSize indicates the percentage of the APK's total download size the entityrepresents.
Figure 1. File sizes in the APK Analyzer
View the AndroidManifest.xml
If your project includes multiple AndroidManifest.xml
files (such as forproduct flavors) or includes libraries that also provide a manifest file, theyare merged into a single file in your APK. This manifest fileis normally a binary file within the APK, but whenselected in the APK Analyzer, the XML form of this entity is reconstructed andpresented. This viewer allows you to understand any changes that might have beenmade to your app during the build. For example, you can see how theAndroidManifest.xml
file from a library your application depends on was mergedinto the final AndroidManifest.xml
file.
Additionally, this viewer provides some lint capabilities, and warnings orerrors appear in the top-right corner. Figure 2 shows an error being reportedfor the selected manifest file.
Figure 2. An error icon appears in the right marginfor the selected manifest file
View DEX files
APK Analyzer's DEX file viewer gives you immediate access to the underlyinginformation in the DEX file(s) in your app. Class, package, total reference, anddeclaration counts are provided within the viewer, which can assist in decidingwhether to use multidex or how to removedependencies to get below the 64K DEX limit.
Figure 3 depicts a medium-size app that is below the 64k DEX limit. Each package,class, and method inside the DEX file has counts listed in the Defined Methodand Referenced Methods columns. The Referenced Methods column counts allmethods that are referenced by the DEX file. This typically includes methodsdefined in your code, dependency libraries, and methods defined in standard Javaand Android packages that the code uses—these are the methods counted towardthe 64k method limit in each DEX file. The Defined Methods column countsonly the methods that are defined in one of your DEX files, so this number is asubset of Referenced Methods. Note that when you package a dependency inyour APK, the methods defined in the dependency add to both method counts. Alsonote that minification andcode shrinking can each also considerablychange the contents of a DEX file after source code is compiled.
Figure 3. A medium-sized app
Filter the DEX file tree view
Just above the Class list, APK Analyzer provides filters forviewing the contents of the selected DEX file.
Figure 4. DEX filters set to display fields andmethods for BuildConfig
To use the filters to display all methods and fields inside a class,do the following:
- In the File list, select the
classes.dex
file. - In the Class list, navigate to and select a class.
- Expand the class you selected.
- Toggle Show fieldsto show or hide the class fields.
- Toggle Show methodsto show or hide the class methods.
Toggle Show all referenced methods or fieldsto show or hide referenced packages, classes, methods, and fields. In thetree view, italicized nodes are references that do not have a definition inthe selected DEX file.
A DEX file can reference methods and fields that are defined in a differenta file. For example
System.out.println()
is a referenceto theprintln()
method in the Android framework.
Load ProGuard mappings
Next to the filtering icons are the ProGuard mapping icons. They aregrayed out until you load a set of ProGuard mapping files that add functionalityto the DEX viewer, such as deobfuscating names (mapping.txt
),showing nodes that were removed (usage.txt
), and indicating nodesthat cannot be removed (seeds.txt
).The ProGuard mapping file you import must result from the same build thatproduced the APK with code shrinking enabled. To learn more, seeShrink, obfuscate, and optimize your app.
Figure 5. Load ProGuard mappings Where to buy matte lipstick.
To load the ProGuard mapping files, do the following:
- Click Load Proguard Mappings.
Navigate to the project folder that contains the mapping files and load allof the files, any combination of the files, or the folder that contains thefiles.
The mapping files are normally in
project/app/build/outputs/mappings/release/
.The file picker defaults to the release folder if it detects thisproject structure. First, the file picker checks for filenames that exactlymatchmapping.txt
,seeds.txt
, andusage.txt
. Next, the file picker checks for filenames thatcontain the textmapping
,usage
, orseeds
somewhere and end with.txt
.For examplerelease-seeds-1.10.15.txt
is a match.
The following list describes the mapping files:
seeds.txt
: Nodes that the ProGuard configuration prevents from being removedduring shrinking are shown in bold.mapping.txt
: Enables Deobfuscate names, so that you can restore the original names of nodes thatwere obfuscated by R8. For example, you can restore obfuscated nodenames likea
,b
,c
toMyClass
,MainActivity
, andmyMethod()
.usage.txt
: Enables Show removed nodes so you can show classes, methods, and fields that wereremoved by R8 during shrinking. Better version of notepad. The restored nodes are shown instrikethrough.For more information about using R8 to obfuscate and minimize your code,see Shrink, obfuscate, and optimize your app.
Show bytecode, find usages, and generate Keep rule
The nodes in the Class list view have a context menu with the followingoptions thatlet you see the bytecode, find usages, and display a dialog that shows ProGuardrules that you can copy and paste for the selected node. Right-click anynode in the Class list view to display its context menu.
Show bytecode: Decompiles the selected class, method, or fieldand displays the smali (not Java code) bytecode representation in a dialog, asfollows:
Figure 6. DEX byte code for init
method
Find usages: Shows which other parts of the DEX codehave references to the selected class or method (figure 7).If you have seeds.txt
loaded,nodes displayed in bold indicate that the Proguard configuration prevents themfrom being removed during shrinking:
Figure 7. References to MyClass
Generate Proguard Keep rule: Shows Proguard rules that you can copy andpaste into your project Proguard configuration file to keep a given package,class, method, or field from being removed during the code shrinking phase(figure 8).For more information, seeCustomize which code to keep.
Figure 8. Proguard rules that you can copy fromthe dialog into your Proguard configuration file
View code and resource entities
Various build tasks change the final entities in an APK file. For example,Proguard shrinking rules can alter your final code, and image resourcescan be overridden by resources in aproduct flavor.Viewing the final version of your files is easy with the APK Analyzer: Clickthe entity and a preview for the text or image entity appears below, as shownin figure 9.
Figure 9. A preview of the final image resource
The APK Analyzer can also display various text and binary files.For instance, the resources.arsc
entity viewer allows you to see theconfiguration-specific values such as language translations for astring resource. In figure 10, you can see the translations for each stringresource.
Figure 10. A preview of translated string resources
Compare APK files
Figure 8. Proguard rules that you can copy fromthe dialog into your Proguard configuration file
View code and resource entities
Various build tasks change the final entities in an APK file. For example,Proguard shrinking rules can alter your final code, and image resourcescan be overridden by resources in aproduct flavor.Viewing the final version of your files is easy with the APK Analyzer: Clickthe entity and a preview for the text or image entity appears below, as shownin figure 9.
Figure 9. A preview of the final image resource
The APK Analyzer can also display various text and binary files.For instance, the resources.arsc
entity viewer allows you to see theconfiguration-specific values such as language translations for astring resource. In figure 10, you can see the translations for each stringresource.
Figure 10. A preview of translated string resources
Compare APK files
The APK Analyzer can compare the size of the entities in two different APKfiles. This is helpful when you need to understand why your app increased insize compared to a previous release. Before you publish an updated APK, do thefollowing:
- Load the version of the APK you are about to publish into the APK Analyzer.
- In the top-right corner of APK Analyzer, click Compare With.
In the selection dialog, find the APK that was last published to your usersand click OK.
A dialog similar to the one in figure 11 appears to help you assess theimpact the update might have on users.
Figure 11 shows the difference between a particular app's debug and releasebuilds. Different build options are in use between these build types, whichalter the underlying entities differently.
Figure 11. The difference between a debugand release APK
Firmware Finder is an application for Android devices that enables users to find the right firmware for your Huawei device.
Read more about Firmware Finder
If you have a Huawei device and you want to get the latest firmware update, or you need the original version, you might have a problem locating the right one. With so many devices on the market, knowing exactly what to download can be difficult.
It's important to mention that Firmware Finder app is not associated with Huawei in any way, but that shouldn't be a problem. It's simply to use. Just find the right firmware for your device, download it, and install it via proxy. Please keep in mind that root is needed.
Features:
- Find the right firmware for your Huawei device
- Download and install with ease
What's new in Firmware Finder APK 5.1:
- Added Russian language.
- Fixed 'Check firmware access' function, added more information in request.
- Changed the transition to the general chat menu.
For more information on downloading Firmware Finder to your phone, check out our guide: how to install APK files.
Other Firmware Finder APK versions (46):
- Firmware Finder 9.9.22019-07-23
- Firmware Finder 9.9.12019-07-02
- Firmware Finder 9.92019-06-14
- Firmware Finder 9.82019-04-30
- Firmware Finder 9.72019-01-10
- Firmware Finder 9.62018-12-30
- Firmware Finder 9.52018-11-22
- Firmware Finder 9.42018-11-11
- Firmware Finder 9.32018-10-15
- Firmware Finder 9.22018-10-14
- Firmware Finder 9.02018-10-05
- Firmware Finder 8.92018-08-06
- Firmware Finder 8.82018-07-04
- Firmware Finder 8.62018-06-07
- Firmware Finder 8.52018-06-03
- Firmware Finder 8.42018-05-21
- Firmware Finder 8.22018-04-10
- Firmware Finder 8.12018-04-08
- Firmware Finder 8.02018-04-08
- Firmware Finder 7.92018-02-09
- Firmware Finder 7.82018-02-08
- Firmware Finder 7.72018-02-07
- Firmware Finder 7.52018-01-17
- Firmware Finder 7.32017-12-18
- Firmware Finder 7.12017-12-14
- Firmware Finder 7.02017-12-13
- Firmware Finder 6.82017-12-08
- Firmware Finder 6.72017-12-04
- Firmware Finder 6.62017-11-13
- Firmware Finder 6.42017-11-10
- Firmware Finder 6.32017-11-05
- Firmware Finder 5.92017-10-05
- Firmware Finder 5.82017-10-03
- Firmware Finder 5.72017-08-18
- Firmware Finder 5.52017-07-05
- Firmware Finder 5.42017-07-02
- Firmware Finder 5.32017-06-30
- Firmware Finder 5.22017-06-26
- Firmware Finder 5.02017-06-19
- Firmware Finder 4.92017-06-09
- Firmware Finder 4.82017-06-07
- Firmware Finder 4.62017-06-06
- Firmware Finder 4.52017-05-25
- Firmware Finder 4.12017-05-03
- Firmware Finder 4.02017-04-18
- Firmware Finder 3.82017-04-13
Hidden File Finder Apk
- Added Russian language.
- Fixed 'Check firmware access' function, added more information in request.
- Changed the transition to the general chat menu.
selected version:
Firmware Finder 5.1 (OLD) get current version instead (9.9.2)Apk File Finder Tool
- FILE SIZE:
- 2.8 MB
- DPI:
- nodpi
- API Minimum:
- 19 - Android 4.4-4.4.4 (KitKat)
- API Target:
- 25 - Android 7.1 (Nougat)
- APK SHA256 HASH:
- c27f73aa0169656e9572d8a2f5579dbdc078de4b9214da30123181e88a02ae57
- APK FINGERPRINT:
- ce:c7:fb:d4:a6:a6:c2:9b:aa:d9:34:4a:c4:5a:76:ce:52:c7:4d:8d
- PACKAGE NAME:
- com.teammt.gmanrainy.huaweifirmwarefinder
- DEVELOPER: