pdf saving is not working on android versions above 10 , need to implement scoped storage in finish() function on SimplyPdfDocument class if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q){ // scoped storage }else { // usual file savin }
pdf saving is not working on android versions above 10 , need to implement scoped storage
in finish() function on SimplyPdfDocument class
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q){
// scoped storage
}else {
// usual file savin
}