Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does C: means in the output of aapt dump xmltree

Tags:

android

aapt

I run command aapt dump xmltree someApk AndroidManifest.xml.
Here is a digest of the output:

  E: activity (line=461)
    A: android:theme(0x01010000)=@0x7f0c0001
    A: android:name(0x01010003)="com.huawei.mobilenotes.client.business.display.activity.NoteTagExpandListActivity" (Raw: "com.huawei.mobilenotes.client.business.display.activity.NoteTagExpandListActivity")
    A: android:screenOrientation(0x0101001e)=(type 0x10)0x1
    A: android:configChanges(0x0101001f)=(type 0x11)0x80
  C: " NoteTagExpandListActivity\n"
  E: activity (line=470)
    A: android:theme(0x01010000)=@0x7f0c0001
    A: android:name(0x01010003)="com.huawei.mobilenotes.client.business.setting.activity.VerificationLocalPwdActivity" (Raw: "com.huawei.mobilenotes.client.business.setting.activity.VerificationLocalPwdActivity")
    A: android:screenOrientation(0x0101001e)=(type 0x10)0x1
    A: android:configChanges(0x0101001f)=(type 0x11)0x80

I think the E stands for Element and A stands for Attribute, but what does C means?

Also I get the corresponding text int the AndroidManifest.xml

        <activity android:configChanges="orientation" android:name="com.huawei.mobilenotes.client.business.display.activity.NoteTagExpandListActivity" android:screenOrientation="portrait" android:theme="@style/theme"/> NoteTagExpandListActivity
<activity android:configChanges="orientation" android:name="com.huawei.mobilenotes.client.business.setting.activity.VerificationLocalPwdActivity" android:screenOrientation="portrait" android:theme="@style/theme"/>

Thank you.

like image 869
VicX Avatar asked Nov 01 '25 15:11

VicX


1 Answers

I found the source code here

else if (code == ResXMLTree::TEXT) {
            size_t len;
            printf("%sC: \"%s\"\n", prefix.string(), String8(block->getText(&len)).string());
    }

It seams that it is used for plain text.

In summary:

  1. N : Namespace
  2. E : Element
  3. A : Attribute
  4. C : Plain Text
like image 175
VicX Avatar answered Nov 03 '25 06:11

VicX



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!