reference androguard.
apkf = APK("myfile.apk")
apkf = APK(read("myfile.apk"), raw=True)
Return the name of the package
>>> apkf.package
com.android.vending
>>> apkf.get_package()
com.android.vending
Return the file md5 of the apk
>>> apkf.file_md5
40bdd920a3a3d2acf432e3c5b485eb11
Return the cert md5 of the apk
>>> apkf.cert_md5
cde9f6208d672b54b1dacc0b7029f5eb
Return the apk file size
>>> apkf.file_size
11194863
Return the apk version
>>> apkf.androidversion
{'Code': u'80341200', 'Name': u'5.4.12'}
Return the android version code
>>> apkf.get_androidversion_code()
80341200
Return the android version name
>>> apkf.get_androidversion_name()
5.4.12
Return the android:minSdkVersion attribute
>>> apkf.get_min_sdk_version()
9
Return the android:targetSdkVersion attribute
>>> apkf.get_target_sdk_version()
21
Return the android:name attributes for libraries
>>> apkf.get_libraries()
[]
Return the files inside the APK
>>> apkf.get_files()
[u'AndroidManifest.xml', u'assets/keys/dcb-pin-encrypt-v1/1',...]
Return the files inside the APK with their associated types (by using python-magic)
Please pip install python-magic
>>> apkf.get_files_types()
{u'res/layout/play_card_bundle_item_small.xml': "Android's binary XML",...}
Return the name of the main activity
>>> apkf.get_main_activity()
com.android.vending.AssetBrowserActivity
Return the android:name attribute of all activities
>>> apkf.get_activities()
['com.android.vending.AssetBrowserActivity', ...]
Return the android:name attribute of all services
>>> apkf.get_services()
['com.android.vending.GCMIntentService', ...]
Return the android:name attribute of all receivers
>>> apkf.get_receivers()
['com.google.android.gcm.GCMBroadcastReceiver', ...]
Return the android:name attribute of all providers
>>> apkf.get_providers()
['com.google.android.finsky.providers.RecentSuggestionsProvider', ...]
Return permissions
>>> apkf.get_permissions()
['com.android.vending.permission.C2D_MESSAGE', ...]
Return FILES, PERMISSIONS, MAIN ACTIVITY...
>>> apkf.show()
FILES: ...
Parse ICON of the apk, storage on icon_path
>>> apkf.parse_icon(icon_path='/tmp')
...
>>> apkf.cert_text
Certificate:
Data:Version: 3 (0x2)
...