Skip to content

Commit

Permalink
release 4.5.1
Browse files Browse the repository at this point in the history
Change-Id: I301d3a2762be8f1225a7bbb580869010583843ae
  • Loading branch information
morganchen12 committed Jan 10, 2018
1 parent a6e401b commit a5a96d3
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions FirebaseUI.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |s|
s.name = 'FirebaseUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'UI binding libraries for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0', :file => 'FirebaseUIFrameworks/LICENSE' }
s.source = { :http => 'https://github.com/firebase/FirebaseUI-iOS/releases/download/v4.5.0/FirebaseUIFrameworks.zip' }
s.source = { :http => 'https://github.com/firebase/FirebaseUI-iOS/releases/download/v4.5.1/FirebaseUIFrameworks.zip' }
s.author = 'Firebase'
s.platform = :ios
s.ios.deployment_target = '9.0'
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_auth.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseAuthUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'UI Auth Base library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_db.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseDatabaseUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'Firebase Database UI binding library.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_fb.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseFacebookAuthUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'Facebook UI binding library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_ggl.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseGoogleAuthUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'Google UI binding library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_phone.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebasePhoneAuthUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'Phone Auth UI binding library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_storage.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseStorageUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'UI Storage library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
2 changes: 1 addition & 1 deletion FirebaseUI_dev_tw.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseTwitterAuthUI'
s.version = '4.5.0'
s.version = '4.5.1'
s.summary = 'Twitter UI binding library for Firebase.'
s.homepage = 'https://github.com/firebase/FirebaseUI-iOS'
s.license = { :type => 'Apache 2.0' }
Expand Down
6 changes: 3 additions & 3 deletions samples/objc/FirebaseUI-demo-objc/FUIAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@import Firebase;
#import <FirebaseAuthUI/FirebaseAuthUI.h>
#import <GTMSessionFetcher/GTMSessionFetcherLogging.h>
#import <TwitterKit/Twitter.h>
#import <TwitterKit/TWTRTwitter.h>

// TODO: Update with Twitter key and secret
NSString *const kTwitterConsumerKey = @"";
Expand All @@ -29,8 +29,8 @@ @implementation FUIAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
if (kTwitterConsumerKey.length && kTwitterConsumerSecret.length) {
[[Twitter sharedInstance] startWithConsumerKey:kTwitterConsumerKey
consumerSecret:kTwitterConsumerSecret];
[[TWTRTwitter sharedInstance] startWithConsumerKey:kTwitterConsumerKey
consumerSecret:kTwitterConsumerSecret];
}

[FIRApp configure];
Expand Down
4 changes: 2 additions & 2 deletions samples/swift/FirebaseUI-demo-swift/FUIAppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
// Successfully running this sample requires an app in Firebase and an
// accompanying valid GoogleService-Info.plist file.
FirebaseApp.configure()
Twitter.sharedInstance().start(withConsumerKey: "consumer-key",
consumerSecret: "consumer-secret");
TWTRTwitter.sharedInstance().start(withConsumerKey: "consumer-key",
consumerSecret: "consumer-secret");
GTMSessionFetcher.setLoggingEnabled(true)
return true
}
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ EXIT_STATUS=0
-workspace FirebaseUI.xcworkspace \
-scheme FirebaseUI \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,OS=11.0,name=iPhone 7' \
-destination 'platform=iOS Simulator,OS=11.2,name=iPhone X' \
build \
test \
ONLY_ACTIVE_ARCH=YES \
Expand Down

0 comments on commit a5a96d3

Please sign in to comment.