Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ade985d6 authored by Jackal Guo's avatar Jackal Guo
Browse files

Revise the javadoc of requiredSplitTypes and splitTypes

Bug: 198345627
Test: N/A
Change-Id: Ibbabb4d1be3a9904cbe41ca6bbe44a9f38b3f7fc
parent 62ddf061
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -1226,18 +1226,18 @@

    <!-- List of split types required by this APK to be present in order to function properly,
         separated by commas. The platform will reject installation of an app that is missing
         any required split types. Each split type is an arbitrary string that has no specific
         meaning to the platform, and is only used for matching <code>splitTypes</code> and
         <code>requiredSplitTypes</code>. As an example, if a split requires strings, drawables,
         and native code this value could be "language,density,abi". Default value is null to
         indicate no split types are required. -->
         any required split types. Each split type is a string, and is only used for matching
         <code>requiredSplitTypes</code> and <code>splitTypes</code>. As an example, if this
         APK requires localized string resources, screen density resources, and native code
         this value could be "language,density,abi". Default value is null to indicate no split
         types are required. -->
    <attr name="requiredSplitTypes" format="string" />

    <!-- List of split types offered by this APK, separated by commas. Each split type is an
         arbitrary string that has no specific meaning to the platform, and is only used for
         matching <code>splitTypes</code> and <code>requiredSplitTypes</code>. As an example,
         if a split offers strings and drawables the value could be "language,density". Default
         value is null to indicate no split types are offered. -->
    <!-- List of split types offered by this APK, separated by commas. Each split type is a
         string, and is only used for matching <code>requiredSplitTypes</code> and
         <code>splitTypes</code>. As an example, if this split offers localized string resources,
         and screen density resources the value could be "language,density". Default value is
         null to indicate no split types are offered. -->
    <attr name="splitTypes" format="string" />

    <!-- Flag to specify if this app wants to run the dex within its APK but not extracted or