How to remove Google project from Firebase Console?
Asked Answered
C

7

50

I've project on Google Developer Console and I've added this here on Firebase Console. Now I've been forced to use Firebase Analytics instead of Google Analytics. So I want to remove/unlink my project back from firebase console only.

If I delete the project from Firebase Console, then project will also be deleted from Google Developer Console. What's the problem!

Please provide any solution.

Churrigueresque answered 2/3, 2017 at 10:17 Comment(6)
Refer this site click here Very good explanation given here.Ruthannruthanne
I'm asking to delete project not the appChurrigueresque
@Khan did you ever get an answer to this question? I'm thinking the answer is that you cannot "unlink firebase" / "disable the Firebase API's" in order to remove the project from the Firebase UI.Surfboat
@Surfboat ~5 years ago when I raised this issue, I couldn't find any resolution around that time. But I believe, Google would have introduced something to overcome this problem therefore these gentle people are answering. :)Churrigueresque
Hello @Khan when you get the answer please let us know. I am bookmarking this question.Occupation
Looks like no answer is working for you :(Churrigueresque
C
27

Go to https://console.firebase.google.com/ Click on project which you want tot delete. Go to Project settings. Scroll down and click on delete Project.

Calve answered 2/3, 2017 at 11:0 Comment(1)
You didn't read question I think. If I delete the project from Firebase Console, then project will also be deleted from Google Developer Console.Churrigueresque
H
17

You can also delete a project this way:

1) Go to your console and select the project you would like to delete. Then, go to "Users permissions" located under the settings gear/widget: enter image description here

2)Then the page will open up to the "settings: users and permissions" tab by default. You will need to navigate to the "general" tab. At the bottom of the page you will see a grey easily missable button labeled "Delete", click, read, and accept a few terms and conditions that you may actually want to read and not skim over:

enter image description here

I tried deleting via the GCP console but for some reason it did not work for me. It would tell me it was deleting the project, and confirmed deletion. I would go to the console and it would "be like" ..."Hey, just kidding, still here".

Henbit answered 11/7, 2019 at 5:13 Comment(0)
P
5

Go to https://console.cloud.google.com/cloud-resource-manager

Then select your project and click on delete.

Then type the project ID given there and click on SHUT DOWN.

Finally it will be pending for deletion within 30 days.

enter image description here

Pirnot answered 16/1, 2019 at 3:3 Comment(0)
R
3

At 2020

Simply open the project you want to delete then , As it written on google support

  1. At the bottom of the General settings page, click Delete project.
  2. Select each checkbox to acknowledge the effects of deleting your project.
  3. Click Delete project.

You should see something like:

enter image description here

Ruphina answered 29/11, 2020 at 2:56 Comment(2)
So finally they have planned to provide the feature! Great! Will try once and then mark this as the right answer. ThanksChurrigueresque
won't solve op question because you cannot press "delete project" if you don't tick all the checkboxes. Those are just for confirming you are aware of the implications of deleting a project.Marc
I
2

To delete a firebase project, follow these steps:

step 1: Go to console

step 2: select the project to delete

step 3: select settings in the sidebar

step 4: select project settings

step 5: scroll down and select delete project

Hope you will find the solution.

Inkhorn answered 28/5, 2020 at 11:36 Comment(0)
B
1

Step 1 -> Go to Firebase console

Step 2 -> Select firebase project where your project is added

Step 3 ->And click your project list and select your project name on click setting.

Step 4 -> scroll down option is Delete project OR Remove this app

I hope this is helpful thanks.

Borax answered 12/4, 2023 at 11:24 Comment(0)
S
0

I've been struggling with the same issue for years. Finally, I managed to get rid of the unwanted project reference in Firebase UI. I'll answer in pictures, sorry I can't describe it in meaningful words. You need to delete the project label which marks the project as Firebase project.

Open list of projects

Edit project's labels

The solution was found while analyzing the GCP project's terraform files. Two of my projects have label = { firebase = "enabled" }. So, I removed the label for one of the projects, applied terraform, and magic happened. Though Terraform did a little bit more than just delete a label this is what it did (I believe under the hood UI will do the same)

      ~ effective_labels    = {
          - "firebase" = "enabled" -> null
        }
      ~ labels              = {
          - "firebase" = "enabled" -> null
        }
      ~ terraform_labels    = {
          - "firebase" = "enabled" -> null
        }
        # (6 unchanged attributes hidden)
Subdebutante answered 31/5 at 3:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.