skip to Main Content

Firebase – I can't get access to the file or 'READ_EXTERNAL_STORAGE' by Karumi Dexter. It is working till Sdk-32 properly but it's not working on 33

Function for choosing video . private void ChooseVideo(){ Dexter.withContext(this) .withPermission(Manifest.permission.READ_EXTERNAL_STORAGE) .withListener(new PermissionListener() { @Override public void onPermissionGranted(PermissionGrantedResponse response) { Intent intent = new Intent( ); //new line added intent.addCategory(Intent.CATEGORY_OPENABLE); intent.setType( "video/*" ); intent.setAction( Intent.ACTION_GET_CONTENT ); startActivityForResult( intent,102 ); } @Override…

VIEW QUESTION

I can't apply glide with firebase storage

I can get link with this, i tested with realtime database on firebase but i'cant use link as a String.but when i write like Glide.with(this).load("link").into(imageView); public void run() { imgRef.getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() { @Override public void onSuccess(Uri uri) { imgUrl =…

VIEW QUESTION
Back To Top
Search