Node exportedAttribute = attributes.getNamedItem("android:exported");
boolean exported = false;
if (exportedAttribute != null) {
exported = Boolean.parseBoolean(exportedAttribute.getTextContent());
}
data.add(new ContentProviderData(providerName, authority, exported));
}
}
return data;
}