skip to Main Content

Why I can't use the FirebaseAuth.getInstance.deleteUser(uid);

FirebaseApp.initializeApp(this); FirebaseAuth.getInstance().deleteUser(uid); System.out.println("Successfully deleted user."); In this code,deleteUser(uid) shows that "Cannot resolve method 'deleteUser' in 'FirebaseAuth'". I don't know why. My doubt is that: there may be some conflicts between client SDK and service SDK. I have not created my…

VIEW QUESTION

Json – how to pull movie id(tmdb api) , @PathVarible

I started my first spring boot project. That's why it's not enough. Already looked for stack overflows and googling. I'd appreciate your help. **tmdb api Query For Details ** 'https://api.themoviedb.org/3/movie/343611?api_key=87bad1aa...~' movie_id : 343611 Controller import com.example.joyit.service.MovieSearchService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j;…

VIEW QUESTION

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

PostgreSQL Using string_agg with count

I have to create a query to show group_id and the list with subjects and number of people from this group per subject. I have table 'group' with 'entity_type', that can define person's subject and with 'group_type' that defines in…

VIEW QUESTION
Back To Top
Search