Skip to content

Commit 95578d1

Browse files
committed
Fixed ALL_DANGEROUS_PERMISSIONS
1 parent b155b7e commit 95578d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CriticalPermissionsHelper/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
defaultConfig {
1414
minSdkVersion 30
1515
targetSdkVersion 32
16-
versionCode 4
17-
versionName "0.4"
16+
versionCode 5
17+
versionName "0.5"
1818

1919
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2020

CriticalPermissionsHelper/src/main/java/com/zebra/criticalpermissionshelper/EPermissionType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public enum EPermissionType
1010
MANAGE_EXTERNAL_STORAGE( "android.permission.MANAGE_EXTERNAL_STORAGE"),
1111
BIND_NOTIFICATION_LISTENER( "android.permission.BIND_NOTIFICATION_LISTENER"),
1212
READ_LOGS( "android.permission.READ_LOGS"),
13-
ALL_DANGEROUS( "android.permission.ALL_DANGEROUS_PERMISSIONS");
13+
ALL_DANGEROUS( "ALL_DANGEROUS_PERMISSIONS");
1414

1515
String stringContent = "";
1616
EPermissionType(String stringContent)

0 commit comments

Comments
 (0)