Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Downgrading Fireabse iOS dependency to 5.x to keep running existing code #28

Merged
merged 2 commits into from
Jun 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Reducing the Firebase iOS dependencies to 5.x to avoid breaking changes.
  • Loading branch information
sagrawal31 committed Jun 27, 2019
commit f8bfb82ae612495737214fe63e5426a518984680
18 changes: 10 additions & 8 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
<plugin id="cordova-plugin-firebase-lib" version="5.0.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Google Firebase Plugin</name>

<name>Google Firebase Plugin</name>
<description>Cordova plugin for Firebase integration</description>
<keywords>cordova</keywords>
<license>MIT</license>

<engines>
<engine name="cordova" version=">=9.0.0"/>
<engine name="cordova-android" version=">=8.0.0"/>
<engine name="cordova-ios" version=">=5.0.1"/>
<engine name="cordova-ios" version=">=5.0.0"/>
</engines>

<platform name="android">
Expand Down Expand Up @@ -91,12 +93,12 @@
<config>
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods>
<pod name="Firebase/Core" spec="~> 6.1.0"/>
<pod name="Firebase/Auth" spec="~> 6.1.0"/>
<pod name="Firebase/Messaging" spec="~> 6.1.0"/>
<pod name="Firebase/Performance" spec="~> 6.1.0"/>
<pod name="Firebase/RemoteConfig" spec="~> 6.1.0"/>
<pods use-frameworks="true">
<pod name="Firebase/Core" spec="5.20.2"/>
<pod name="Firebase/Auth" spec="5.20.2"/>
<pod name="Firebase/Messaging" spec="5.20.2"/>
<pod name="Firebase/Performance" spec="5.20.2"/>
<pod name="Firebase/RemoteConfig" spec="5.20.2"/>
<pod name="Fabric" spec="1.10.2"/>
<pod name="Crashlytics" spec="3.13.2"/>
</pods>
Expand Down