Skip to content

Commit cc89461

Browse files
Update dependencies
1 parent 51076f3 commit cc89461

File tree

3 files changed

+23
-12
lines changed

3 files changed

+23
-12
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,11 @@ In order to ensure the browser implementation works, it will be necessary to con
319319
```
320320

321321
# History
322-
## 1.-.0
322+
## 1.0.1
323+
- Update Firebase dependencies
324+
- Fix podspec for cordova-ios 5
325+
326+
## 1.0.0
323327
- Major Android dependency update to 4.2.1
324328
- Breaking change around meaning of 'anonymous' configuration option
325329
- Add support for ANONYMOUS provider

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-firebaseui-auth",
3-
"version": "0.0.10",
3+
"version": "1.0.1",
44
"description": "Adds support for Firebase UI authentication.",
55
"repository": {
66
"type": "git",

plugin.xml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-firebaseui-auth" version="0.0.10">
2+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-firebaseui-auth" version="1.0.1">
33
<name>Firebase UI Authentication</name>
44
<description>Adds support for Firebase Authentication to your Cordova/PhoneGap apps.</description>
55
<license>Apache 2.0</license>
@@ -10,9 +10,9 @@
1010

1111
<engines>
1212
<engine name="cordova" version=">=7.0.0" />
13-
<engine name="cordova-android" version=">=5.0.0" />
13+
<engine name="cordova-android" version=">=8.0.0" />
1414
<engine name="cordova-plugman" version=">=4.2.0" />
15-
<engine name="cordova-ios" version=">=4.0.0" />
15+
<engine name="cordova-ios" version=">=5.0.0" />
1616
</engines>
1717

1818
<preference name="FACEBOOK_APPLICATION_ID" default="tbr"/>
@@ -89,9 +89,16 @@
8989
<header-file src="src/ios/FirebaseUIAuthPlugin.h"/>
9090
<source-file src="src/ios/FirebaseUIAuthPlugin.m"/>
9191

92-
<framework src="FirebaseUI/Auth" type="podspec" spec=""/>
93-
<framework src="FirebaseUI/Google" type="podspec" spec=""/>
94-
<framework src="FirebaseUI/Facebook" type="podspec" spec=""/>
92+
<podspec>
93+
<config>
94+
<source url="https://github.com/CocoaPods/Specs.git"/>
95+
</config>
96+
<pods use-frameworks="true">
97+
<pod name="FirebaseUI/Auth" />
98+
<pod name="FirebaseUI/Google" />
99+
<pod name="FirebaseUI/Facebook" />
100+
</pods>
101+
</podspec>
95102
</platform>
96103

97104
<platform name="android">
@@ -106,11 +113,11 @@
106113
</feature>
107114
</config-file>
108115

109-
<preference name="ANDROID_FIREBASE_CORE_VERSION" default="16.0.4"/>
110-
<preference name="ANDROID_FIREBASE_AUTH_VERSION" default="16.0.4"/>
116+
<preference name="ANDROID_FIREBASE_CORE_VERSION" default="16.0.8"/>
117+
<preference name="ANDROID_FIREBASE_AUTH_VERSION" default="16.2.1"/>
111118
<preference name="ANDROID_PLAY_SERVICES_AUTH_VERSION" default="16.0.1"/>
112-
<preference name="ANDROID_FIREBASEUI_VERSION" default="4.2.1"/>
113-
<preference name="ANDROID_FACEBOOK_SDK_VERSION" default="4.33.0"/>
119+
<preference name="ANDROID_FIREBASEUI_VERSION" default="4.3.1"/>
120+
<preference name="ANDROID_FACEBOOK_SDK_VERSION" default="4.41.0"/>
114121
<preference name="COLOR_PRIMARY" default="#ffffff"/>
115122
<preference name="COLOR_DARK_PRIMARY" default="#555555"/>
116123
<preference name="COLOR_LIGHT_PRIMARY" default="#aaaaaa"/>

0 commit comments

Comments
 (0)