Skip to content

Commit ac88772

Browse files
committed
Fix unresponsive issue in Onboading Questions screen
1 parent 1970f0c commit ac88772

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ abstract_target 'Apps' do
233233

234234
pod 'Gridicons', '~> 1.1.0'
235235

236-
pod 'WordPressAuthenticator', '~> 5.0'
237-
# pod 'WordPressAuthenticator', git: 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', branch: 'trunk'
236+
# pod 'WordPressAuthenticator', '~> 5.0'
237+
pod 'WordPressAuthenticator', git: 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', branch: 'task/fix-onboarding-questions-unresponsive'
238238
# pod 'WordPressAuthenticator', :git => 'https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git', :commit => ''
239239
# 'WordPressAuthenticator', :path => '../WordPressAuthenticator-iOS'
240240

Podfile.lock

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ PODS:
502502
- WordPress-Aztec-iOS (1.19.8)
503503
- WordPress-Editor-iOS (1.19.8):
504504
- WordPress-Aztec-iOS (= 1.19.8)
505-
- WordPressAuthenticator (5.0.0):
505+
- WordPressAuthenticator (5.0.1-beta.1):
506506
- GoogleSignIn (~> 6.0.1)
507507
- Gridicons (~> 1.0)
508508
- "NSURL+IDN (= 0.4)"
@@ -543,8 +543,8 @@ DEPENDENCIES:
543543
- AppCenter (~> 4.1)
544544
- AppCenter/Distribute (~> 4.1)
545545
- Automattic-Tracks-iOS (~> 0.13)
546-
- boost (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.86.0-alpha1/third-party-podspecs/boost.podspec.json`)
547-
- BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.86.0-alpha1/third-party-podspecs/BVLinearGradient.podspec.json`)
546+
- boost (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.86.0/third-party-podspecs/boost.podspec.json`)
547+
- BVLinearGradient (from `https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.86.0/third-party-podspecs/BVLinearGradient.podspec.json`)
548548
- CocoaLumberjack/Swift (~> 3.0)
549549
- CropViewController (= 2.5.3)
550550
- Down (~> 0.6.6)
@@ -609,7 +609,7 @@ DEPENDENCIES:
609609
- Starscream (= 3.0.6)
610610
- SVProgressHUD (= 2.2.5)
611611
- WordPress-Editor-iOS (~> 1.19.8)
612-
- WordPressAuthenticator (~> 5.0)
612+
- WordPressAuthenticator (from `https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git`, branch `task/fix-onboarding-questions-unresponsive`)
613613
- WordPressKit (~> 5.0)
614614
- WordPressShared (~> 2.0.0-beta.1)
615615
- WordPressUI (~> 1.12.5)
@@ -619,8 +619,6 @@ DEPENDENCIES:
619619
- ZIPFoundation (~> 0.9.8)
620620

621621
SPEC REPOS:
622-
https://github.com/wordpress-mobile/cocoapods-specs.git:
623-
- WordPressAuthenticator
624622
trunk:
625623
- Alamofire
626624
- AlamofireImage
@@ -775,6 +773,9 @@ EXTERNAL SOURCES:
775773
:git: https://github.com/wordpress-mobile/gutenberg-mobile.git
776774
:submodules: true
777775
:tag: v1.86.0
776+
WordPressAuthenticator:
777+
:branch: task/fix-onboarding-questions-unresponsive
778+
:git: https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git
778779
Yoga:
779780
:podspec: https://raw.githubusercontent.com/wordpress-mobile/gutenberg-mobile/v1.86.0/third-party-podspecs/Yoga.podspec.json
780781

@@ -790,6 +791,9 @@ CHECKOUT OPTIONS:
790791
:git: https://github.com/wordpress-mobile/gutenberg-mobile.git
791792
:submodules: true
792793
:tag: v1.86.0
794+
WordPressAuthenticator:
795+
:commit: 98dc0b8bd626d45bf9d174f735564346bef89847
796+
:git: https://github.com/wordpress-mobile/WordPressAuthenticator-iOS.git
793797

794798
SPEC CHECKSUMS:
795799
Alamofire: 3ec537f71edc9804815215393ae2b1a8ea33a844
@@ -876,7 +880,7 @@ SPEC CHECKSUMS:
876880
UIDeviceIdentifier: e6a801d25f4f178de5bdf475ffe29050d0148176
877881
WordPress-Aztec-iOS: 7d11d598f14c82c727c08b56bd35fbeb7dafb504
878882
WordPress-Editor-iOS: 9eb9f12f21a5209cb837908d81ffe1e31cb27345
879-
WordPressAuthenticator: 0cdf1bff75bd3f58fe733d6457221f27bbbdc9f4
883+
WordPressAuthenticator: 7d068335413796c262f3b0f3e2025a65f055082d
880884
WordPressKit: 202f529323b079a344f7bc1493b7ebebfd9ed4b5
881885
WordPressShared: 04403b43f821c4ed2b84a2112ef9f64f1e7cdceb
882886
WordPressUI: c5be816f6c7b3392224ac21de9e521e89fa108ac
@@ -892,3 +896,6 @@ SPEC CHECKSUMS:
892896
ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba
893897
ZIPFoundation: ae5b4b813d216d3bf0a148773267fff14bd51d37
894898

899+
PODFILE CHECKSUM: cc1049d8bc7865c8894be34c84f2f27fce572b49
900+
901+
COCOAPODS: 1.11.2

0 commit comments

Comments
 (0)