Created
December 2, 2015 18:40
-
-
Save sam40911/6321c934e6ba6115e7ee to your computer and use it in GitHub Desktop.
Using "AXML_Printer2" to decompile "AndroidManifest.xml"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:versionCode="1" | |
android:versionName="1.0" | |
package="edu.ntust.cs.rfid.hw4" | |
platformBuildVersionCode="22" | |
platformBuildVersionName="5.1.1-1819727" | |
> | |
<uses-sdk | |
android:minSdkVersion="15" | |
android:targetSdkVersion="21" | |
> | |
</uses-sdk> | |
<uses-permission | |
android:name="android.permission.NFC" | |
> | |
</uses-permission> | |
<uses-permission | |
android:name="android.permission.VIBRATE" | |
> | |
</uses-permission> | |
<uses-feature | |
android:name="android.hardware.nfc" | |
android:required="true" | |
> | |
</uses-feature> | |
<application | |
android:theme="@7F070001" | |
android:label="@7F060000" | |
android:icon="@7F020009" | |
android:allowBackup="true" | |
> | |
<activity | |
android:label="@7F060000" | |
android:name=".NFCMain" | |
android:screenOrientation="1" | |
android:windowSoftInputMode="0x00000002" | |
> | |
<intent-filter | |
> | |
<action | |
android:name="android.intent.action.MAIN" | |
> | |
</action> | |
<category | |
android:name="android.intent.category.LAUNCHER" | |
> | |
</category> | |
</intent-filter> | |
<intent-filter | |
> | |
<action | |
android:name="android.nfc.action.NDEF_DISCOVERED" | |
> | |
</action> | |
<category | |
android:name="android.intent.category.DEFAULT" | |
> | |
</category> | |
</intent-filter> | |
</activity> | |
<activity | |
android:label="@7F060000" | |
android:name=".Key" | |
android:screenOrientation="1" | |
android:configChanges="0x000000A0" | |
> | |
</activity> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment