summaryrefslogtreecommitdiff
path: root/core/xsd
diff options
context:
space:
mode:
authorSundong Ahn <sundongahn@google.com>2019-03-27 15:14:34 +0900
committerSundong Ahn <sundongahn@google.com>2019-03-27 06:45:33 +0000
commit51a4e9f136dcd63fe8ca7a079d93aba495925cf9 (patch)
treec75b33d7d6105b0537c4edb1e585378bcd70674a /core/xsd
parent743a1c80015f97d75e9b8c9fe7c3be4cfda006be (diff)
Add version attribute
The version attribute is added. Bug: 127435354 Test: m -j && make checkapi Change-Id: I5168a807a71defe6c1e7ceee65a4dc0540d3f2c2
Diffstat (limited to 'core/xsd')
-rw-r--r--core/xsd/permission.xsd1
-rw-r--r--core/xsd/schema/current.txt2
2 files changed, 3 insertions, 0 deletions
diff --git a/core/xsd/permission.xsd b/core/xsd/permission.xsd
index d90863b2c716..f967843671f2 100644
--- a/core/xsd/permission.xsd
+++ b/core/xsd/permission.xsd
@@ -78,6 +78,7 @@
<xs:complexType name="feature">
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="notLowRam" type="xs:string"/>
+ <xs:attribute name="version" type="xs:int"/>
</xs:complexType>
<xs:complexType name="unavailable-feature">
<xs:attribute name="name" type="xs:string"/>
diff --git a/core/xsd/schema/current.txt b/core/xsd/schema/current.txt
index 82bb0feac089..feffd083da70 100644
--- a/core/xsd/schema/current.txt
+++ b/core/xsd/schema/current.txt
@@ -97,8 +97,10 @@ package com.android.xml.permission {
ctor public Feature();
method public String getName();
method public String getNotLowRam();
+ method public int getVersion();
method public void setName(String);
method public void setNotLowRam(String);
+ method public void setVersion(int);
}
public class Group {