Skip to content

Commit 3ab7ff9

Browse files
authored
Invalid value for visibility :2
When developers tried to download files without notification apps was crashing and showing error: "Invalid value for visibility :2" so issue was there is no permission added in repo's manifest file so i have added it.
1 parent db644b8 commit 3ab7ff9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

android/src/main/AndroidManifest.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020

2121
<!-- Required to read and write the expansion files on shared storage -->
2222
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
23+
24+
<!-- Required to disable download notification -->
25+
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
2326

2427
<application android:label="@string/app_name">
2528

0 commit comments

Comments
 (0)