How to upgrade a new Firebase application from an existing old application?

"Create a new application" or "import from a Google project" only in the new Firebase console. ( https://console.firebase.google.com/ )

How to update the exit from the old application to a new one? ( https://www.firebase.com/account/#/ )

--- Edit

This problem looks already fixed.

I think the reason is a 500 request error on the new Firebase console. However, he has already fixed it.

0
source share
4 answers

If you are already logged into the new Firebase Console with the same Google account as on firebase.com , then you should see your firebase.com project listed in the "Projects Currently on Firebase.com" section.

Follow the instructions on the new Firebase update page for Web , Android, or iOS .

+1
source

I had a somewhat similar problem. I see the import button, but when I click on it and select the project that I want to load, it displays only the counter. Ive even tried to import JSON from an old firebase project (before the update), and it just rotates. Maybe the old JSON is not what the new fire base expects?

EDIT OK, it looks like it doesn't look like Chrome. Works in IE 11 but not in Chrome 50.0.2

0
source

So you are updating Firebase <3.0 for Firebase 3.

Step 1

Install regular Firebase - pod 'Firebase', '>= 2.5.1'

or

If you consider your old application already Firebase <3.0, everything should be fine.

Step 2

Update - update pod

* At this stage, the update will take several minutes. You should see something like this.

 Update all pods Updating local specs repositories Analyzing dependencies Downloading dependencies Installing Firebase 3.2.0 (was 3.2.0) Using FirebaseAnalytics (3.2.0) Installing FirebaseAuth (3.0.2) Using FirebaseDatabase (3.0.1) Using FirebaseInstanceID (1.0.6) Using GoogleInterchangeUtilities (1.2.1) Installing GoogleNetworkingUtilities (1.2.1) Using GoogleSymbolUtilities (1.1.1) Using GoogleUtilities (1.3.1) Generating Pods project Integrating client project Sending stats Pod installation complete! There are 4 dependencies from the Podfile and 10 total pods installed. 

Step 3

You should now have Firebase 3. So, you can add such frameworks to your pod file, then pod update

 # Uncomment this line to define a global platform for your project platform :ios, '8.0' # Uncomment this line if you're using Swift use_frameworks! target 'xMarket' do end target 'xMarketTests' do end target 'xMarketUITests' do end pod 'Firebase', '>= 2.5.1' pod 'Firebase/Core' pod 'Firebase/Database' pod 'Firebase/Auth' 

Good luck

PS You will also have to edit your codebase because Firebase 3 is different from Firebase 2. Check the documentation here. Examples of Firebase 3

0
source

The above answers look great. I will just add one link in which there are many common differences between Firebase 2 and Firebase 3: https://firebase.google.com/support/guides/firebase-ios#get_a_database_reference_numbered

(I did not see this at first and spent several hours trying to figure it all out.)

0
source

All Articles