Monday, September 14, 2009

Android: AndroidManifest.xml

http://developer.android.com/intl/zh-TW/guide/topics/manifest/manifest-intro.htmlhttp://developer.android.com/intl/zh-TW/guide/topics/manifest/manifest-intro.html
http://www.jollen.org/blog/2009/01/jollen-android-programming-11.html
http://code.google.com/p/androidbmi/wiki/AndroidManifest
http://ibotpeaches.github.io/Apktool/
https://developer.android.com/tools/help/index.html

The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application's code.


The allowed elements are as follows:

<action>
<activity>
<activity-alias>
<application>
<category>
<data>
<grant-uri-permission>
<instrumentation>
<intent-filter>
<manifest>
<meta-data>
<permission>
<permission-group>
<permission-tree>
<provider>
<receiver>
<service>
<uses-configuration>
<uses-library>
<uses-permission>
<uses-sdk>


[Note] apktool or aapt can extract manifest.xml from apk
[Note] PackageManager can also get info in manifest,  getLaunchIntentForPackage()
[Note] unzip apk can get manifest.xml, but it's binary?


No comments:

Related Posts Plugin for WordPress, Blogger...