Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ partial class BroadcastReceiverAttribute {

static ManifestDocumentElement<BroadcastReceiverAttribute> mapping = new ManifestDocumentElement<BroadcastReceiverAttribute> ("receiver") {
{
"Description",
"description",
self => self.Description,
(self, value) => self.Description = (string) value
}, {
"DirectBootAware",
"directBootAware",
self => self.DirectBootAware,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public BroadcastReceiverAttribute ()
public bool DirectBootAware {get; set;}
public bool Enabled {get; set;}
public bool Exported {get; set;}
public string Description {get; set;}
public string Icon {get; set;}
public string Label {get; set;}
public string Name {get; set;}
Expand Down