PDF Doesn't show on SDK 30 -> Android 10
See original GitHub issueHi, The pdf stopped showing after I targeted SDK 30. does this library support sdk 30? if yes, what change i need to do?
The pdf doesn’t show when run on Android 10
my code:
` Uri path = Uri.fromFile(pdfFile);
pdfViewer.fromUri(path)
.password(null)
.defaultPage(0)
.enableSwipe(true)
.swipeHorizontal(false)
.enableDoubletap(true)
.spacing(0)
.enableAnnotationRendering(false)
.load();
`
thanks
Issue Analytics
- State:
- Created 3 years ago
- Comments:9
Top Results From Across the Web
How to list PDF in android 10 Api level 30? - Stack Overflow
Show activity on this post. like this, just query all the files, and display the ones ending with ".pdf" check the answer below....
Read more >Saving pdf file doesn't work on Android 10 - Syncfusion
Saving pdf file doesn't work on Android 10 ... The example project is working fine while using Android 9, however it doesn't work...
Read more >Android storage use cases and best practices
Show image or video files from multiple folders; Show images or videos from ... If your app targets Android 10 (API level 29),...
Read more >Use of All files access (MANAGE_EXTERNAL_STORAGE ...
This is only applicable to apps that target Android 11 (API level 30) and declare the MANAGE_EXTERNAL_STORAGE permission, which is added in Android...
Read more >Troubleshoot viewing PDF files on the web - Adobe Support
To solve common PDF-display issues, follow the instructions in the order ... If you don't see the Adobe PDF Reader add-on, try the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For SDK 28 I used @AhmerAfzal1 library but any other error I am getting. While for same code @barteksc Library working perfect.
@AhmerAfzal1 if face the same problem and I try to use your library but it crashes like Biplab-Roy