View the APK package name signature and other information. The apk package name Signature
Some game third parties, for example, need to configure the game package name and signature for sharing. The package names in different channels have different signatures, so you often need to view signature information such as di
1. Use ADB to get application information, version information of an APK in the phone, adb shell Dumpsys package com.sy.a2682. List all adb shell Dumpsys 3. Launch apk adb shell am star with ADB T-n Com.sy.a268/com.sy.a268.mainactivity4. Randomly generates an event to an application that randomly generates 500 events to the program. You will find that your program is constantly being clicked and rotated! A
View Android APK Source Code cracking and Android apk source codeTool preparation:
Tool download: http://download.csdn.net/detail/catshitone/8491347Start: Step 1:
First, decompress the apk package with the decompression software (such as good pressure. The unzipped xml file is garbled when it is opened. How can this
The premise is that JDK has been installed.
Required tools: apkanalyzer
: Http://download.csdn.net/detail/koko7958/3803375
1. Get APK Information
View androidmanifest. XML to obtain the package name, activity name, and version.
Because androidmanifest. XML in the APK package cannot be directly decompressed and viewed, you need to use apkanalyzer to perform the f
ADB devices (shows connected devices)ADB root (Get phone root privileges)ADB remount (re-mount the system partition to make the system partition writable)ADB shell (Linux shell environment entering the target device)CD system/app (switch to System/app path) Note: The general apk is under/system/app/or/system/priv-app/LS (Show all folders)--Determine the appropriate folder and path according to the APK nameE
First, let's talk about the APK structure. APK is compressed in ZIP format, which can be easily decompressed.
The structure of an APK file is:
The META-INF \ JAR file is often seen
Res \ directory for storing resource files
Androidmanifest. xmlProgramGlobal configuration file
Classes. Dex Dalvik bytecode
Resources. ARSC compiled binary resource file
Posted 3 years ago (2012-08-13 16:50) Read (9359) | comments (2) 8 People collection This article, I want to collect likes5Mu-NET, programmer promotion raise pay artifact, click Free to learnAPK anti-compilation view *.java androidmanifest.xml layout XML fileThis is useful for not using jockey to confuse code! One, decompile apk get java source code First to download two tools: dex2ja
C # Call aapt to view apk file information,
This is the first article.
1. Origin
The idea comes from the project development process. You need to confirm the apk file version to verify its functional differences so as to locate the problem, so du Niang, get the APK information Viewer (
This topic describes howDecompile the Android Application to view the source code, resource files, and XML files, modify the files, and package them into an APK.. We encourage people to decompile to learn others' designs, rather than confusing the market after changing the app shell. You can also directly use the anti-droid compiled by netizens.
Android APK is a
Wrote a script to view the APK signature with the shell. The code is very small and simple.Supports recursive directory queries#!/bin/bash# how to use the./getcertificate.sh xx.apkget_signature () {path= ' jar tf ' $ ' | grep RSA ' #查找apk中RSA文件 jar XF $ $p Ath #把RSA文件解压出来 keytool-printcert-file $path #查看指纹证书 rm-r $path #删除之前解压的文件}mypath= ' pwd ' filepath= "" if [
Write a script to view the apk signature using shell. Very few and very simple codes
Copy codeThe Code is as follows :#! /Bin/bash
Mkdir. temp_for_certificate
Cd. temp_for_certificate
Count = 0
While [-n "$1"]
Do
Count = $ [$ count + 1]
Echo "(# $ count)" 'basename "$1 "'":"
Echo ""
Path = 'jar tf "$1" | grep RSA '# Find the RSA file in the apk.
Jar xf $1 $ path
Reference to:http://blog.csdn.net/huiguixian/article/details/39928089If you have an apk and need to know what Android version is supported by his minimum installation, how should I check it?Change the APK suffix name directly to RAR or zip and pull out the androidmanifest.xml? No, Androidmanifest.xml has been compiled, and a lot of content has been changed into binary.In fact, you can use Android to bring y
Label:The premise is that the Android SDK has been downloaded and the environment variables are ready!In console input command $adb shell PMYou can see the relevant usage of the ADB shell pm, see the output for more detailsThe simplest and most useful way to see information about an APK file is:AAPT dump badging [yourapp.apk]If you just want to see the packagename applied on your phone, enter the command:ADB shell PM List PackagesThe following informa
APK program Running ProcessFirst, Activitythread begins execution from the main () function, calling Preparemainlooper () to create a message queue (MessageQueue) for the UI thread.A Activitythread object is then created, and an H (Handler) object and a Applicationthread (Binder) object are created in the initialization code of the Activitythread. Where Binder is responsible for receiving IPC calls from the remote AMS, and when the call is received, t
View Android App (APK) signatureThis address: Http://blog.csdn.net/caroline_wendyWhen registering apps on Weibo and open platforms , you'll need to fill out an app (apk) signature and use the Keytool tool to find the signature of your signed app .1. Use the Unzip tool to locate the CERT in the APK package . RSA file ,
When doing app automation, it's often necessary to analyze the APK for its package name and start activity, and how to view the APK information through the tool without the installation.Using the AAPT tool that comes with the Android SDK, AAPT (android Asset Packagingtools) is in the Build-tools directory of the SDK. The tool can be viewed, created, updated in zi
Android packaged into an apk, is actually a compressed file, we open with WinRAR can also see the structure of the file inside. You can see the androidmanifest. But there's something wrong with the content.Do not know is because of encryption or Android is so, open androidmanifest after seeing the Versioncode and Versionname is garbled ...So the online search to the following method.AAPT tools, usually we do not use this thing, but packaged into the
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.