FileDocCategorySizeDatePackage
FeatureGroupInfo.javaAPI DocAndroid 5.1 API1923Thu Mar 12 22:22:10 GMT 2015android.content.pm

FeatureGroupInfo

public final class FeatureGroupInfo extends Object implements android.os.Parcelable
A set of features that can be requested by an application. This corresponds to information collected from the AndroidManifest.xml's {@code } tag.

Fields Summary
public FeatureInfo[]
features
The list of features that are required by this group.
public static final Creator
CREATOR
Constructors Summary
public FeatureGroupInfo()

    
public FeatureGroupInfo(FeatureGroupInfo other)

        features = other.features;
    
Methods Summary
public intdescribeContents()

        return 0;
    
public voidwriteToParcel(android.os.Parcel dest, int flags)

        dest.writeTypedArray(features, flags);