vendredi 31 juillet 2015

Sort AndroidManifest File

I am trying to sort a large android manifest file. Is there a standard way of doing this? I have looked into xslt but have yet to find a stylesheet that will do what I need.

A sample might be something like this, where I would want the output to be sorted by the name of the object recursively and then by android:name param on the object if it exists:

<?xml version="1.0" encoding="utf-8"?>

<manifest>

    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <permission />
    <permission-tree />
    <permission-group />
    <instrumentation />
    <uses-sdk />
    <uses-configuration />  
    <uses-feature />  
    <supports-screens />  
    <compatible-screens />  
    <supports-gl-texture />  

    <application>

        <activity>
            <intent-filter>
                <action />
                <category />
                <data />
            </intent-filter>
            <meta-data />
        </activity>

        <activity-alias>
            <intent-filter> . . . </intent-filter>
            <meta-data />
        </activity-alias>

        <service>
            <intent-filter> . . . </intent-filter>
            <meta-data/>
        </service>

        <receiver>
            <intent-filter> . . . </intent-filter>
            <meta-data />
        </receiver>

        <provider>
            <grant-uri-permission />
            <meta-data />
            <path-permission />
        </provider>

        <uses-library />

    </application>

</manifest>

Aucun commentaire:

Enregistrer un commentaire