Add version attribute

The version attribute is added.

Bug: 127435354
Test: m -j && make checkapi

Change-Id: I5168a807a71defe6c1e7ceee65a4dc0540d3f2c2
This commit is contained in:
Sundong Ahn
2019-03-27 15:14:34 +09:00
parent 743a1c8001
commit 51a4e9f136
2 changed files with 3 additions and 0 deletions

View File

@@ -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"/>

View File

@@ -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 {