Someone sent me solution of this problem on my email. Below I am placing his words, please try: . . Hello Sir, Your code is for only API level 23 and less change this code for new API level greater then 23 and more.this is a permission issues code:-ActivityCompat.requestPermissions (MainActivity.this,new String[]{Manifest.permission.READ_EXTERNAL_STORAGE,Manifest.permission.WRITE_EXTERNAL_STORAGE}, PackageManager.PERMISSION_GRANTED); if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.JELLY_BEAN){ uploadimage(); }
Thanks ! 1,000 videos and u are the only one who solve my problem
Nice video
After long time you commented on my video. I was missing you.😊
I'm having a problem with sqliteDatabase.rawQuery. My app keep stoping and not saving pdf file
Already fixed! just changed my table name on save as pdf button
Table class present in which lib.. i am not getting it
We can make html css to pdf using itext7 android studio if yes plz make a video
Hello! Is there any 3rd party library that can convert whole database into a single pdf file?
I think iText 7 can do this.
Hello
I am facing error in PdfWriter(file). It is showing red line under file, Can you please help ?
Someone sent me solution of this problem on my email. Below I am placing his words, please try:
.
.
Hello Sir,
Your code is for only API level 23 and less change this code for new API level greater then 23 and more.this is a permission issues
code:-ActivityCompat.requestPermissions (MainActivity.this,new String[]{Manifest.permission.READ_EXTERNAL_STORAGE,Manifest.permission.WRITE_EXTERNAL_STORAGE}, PackageManager.PERMISSION_GRANTED);
if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.JELLY_BEAN){
uploadimage();
}
Basically this is permission issue. Please add permission in the code and try.
@@SarthiTechnology Ok Thank You