Skip to content

Commit

Permalink
ISSUE-652: define ALLOW_ALL & ALLOW_SELECTED on Permissions.Button (#653
Browse files Browse the repository at this point in the history
)
  • Loading branch information
TTC1018 authored Aug 15, 2024
1 parent 958d6cb commit d4043df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ interface Permissions {
ALLOW,
ALLOW_ALWAYS,
ALLOW_FOREGROUND,
ALLOW_ALL,
ALLOW_SELECTED,
DENY
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ class PermissionsImpl(
Permissions.Button.ALLOW to getResIdWithPackageName("permission_allow_button"),
Permissions.Button.ALLOW_ALWAYS to getResIdWithPackageName("permission_allow_always_button"),
Permissions.Button.ALLOW_FOREGROUND to getResIdWithPackageName("permission_allow_foreground_only_button"),
Permissions.Button.ALLOW_ALL to getResIdWithPackageName("permission_allow_all_button"),
Permissions.Button.ALLOW_SELECTED to getResIdWithPackageName("permission_allow_selected_button"),
Permissions.Button.DENY to getResIdWithPackageName("permission_deny_button")
)

Expand Down

0 comments on commit d4043df

Please sign in to comment.