├── Dovve.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── dheerajkumarsharma.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Dovve.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── dheerajkumarsharma.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Dovve ├── Controller │ ├── Base │ │ ├── ImageDetailViewController.swift │ │ ├── TweetDetailViewController.swift │ │ ├── UserProfileViewController.swift │ │ └── WebViewController.swift │ ├── CustomTabBarViewController.swift │ ├── FollowDetails │ │ ├── FollowDetailViewController.swift │ │ ├── UserFollowersCollectionViewCell.swift │ │ └── UserFollowingCollectionViewCell.swift │ ├── Login │ │ └── LoginViewController.swift │ ├── Main │ │ ├── HomeViewController.swift │ │ ├── MentionsViewController.swift │ │ ├── ProfileViewController.swift │ │ └── SearchViewController.swift │ └── SearchCategoryDetails │ │ ├── ExploreSettingsViewController.swift │ │ ├── LatestSearchCollectionViewCell.swift │ │ ├── PeopleSearchCollectionViewCell.swift │ │ ├── SearchWithCategoryViewController.swift │ │ ├── SelectLocationViewController.swift │ │ └── TopSearchCollectionViewCell.swift ├── Model │ ├── Structures.swift │ ├── FetchWoeidModel.swift │ ├── FollowerListModel.swift │ ├── FollowingListModel.swift │ ├── GetFollowingStatus.swift │ ├── GetTweetWithIdModel.swift │ ├── HomeTimeLineModel.swift │ ├── MentionTimelineModel.swift │ ├── SearchModel.swift │ ├── SearchUserModel.swift │ ├── TrendsModel.swift │ ├── UserProfileModel.swift │ ├── UserTimeLineModel.swift │ └── Woeid.json ├── SupportingFiles │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 20.png │ │ │ ├── 29-1.png │ │ │ ├── 29.png │ │ │ ├── 58-1.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small-41.png │ │ │ └── Icon-Small-42.png │ │ ├── Contents.json │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ ├── back.png │ │ │ ├── back@2x.png │ │ │ └── back@3x.png │ │ ├── back2.imageset │ │ │ ├── Contents.json │ │ │ ├── back.png │ │ │ ├── back@2x.png │ │ │ └── back@3x.png │ │ ├── comment.imageset │ │ │ ├── Contents.json │ │ │ ├── comment.png │ │ │ ├── comment@2x.png │ │ │ └── comment@3x.png │ │ ├── demo.imageset │ │ │ ├── Contents.json │ │ │ └── demo.jpg │ │ ├── explore.imageset │ │ │ ├── Contents.json │ │ │ ├── explore.png │ │ │ ├── explore@2x.png │ │ │ └── explore@3x.png │ │ ├── favorited.imageset │ │ │ ├── Contents.json │ │ │ ├── heart.png │ │ │ ├── heart@2x.png │ │ │ └── heart@3x.png │ │ ├── heart.imageset │ │ │ ├── Contents.json │ │ │ ├── heart.png │ │ │ ├── heart@2x.png │ │ │ └── heart@3x.png │ │ ├── home-selected.imageset │ │ │ ├── Contents.json │ │ │ ├── home-selected.png │ │ │ ├── home-selected@2x.png │ │ │ └── home-selected@3x.png │ │ ├── home.imageset │ │ │ ├── Contents.json │ │ │ ├── home.png │ │ │ ├── home@2x.png │ │ │ └── home@3x.png │ │ ├── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo.png │ │ ├── mentions-selected.imageset │ │ │ ├── Contents.json │ │ │ ├── mentions-selected.png │ │ │ ├── mentions-selected@2x.png │ │ │ └── mentions-selected@3x.png │ │ ├── mentions.imageset │ │ │ ├── Contents.json │ │ │ ├── mentions.png │ │ │ ├── mentions@2x.png │ │ │ └── mentions@3x.png │ │ ├── messages-selected.imageset │ │ │ ├── Contents.json │ │ │ ├── messages-selected.png │ │ │ ├── messages-selected@2x.png │ │ │ └── messages-selected@3x.png │ │ ├── messages.imageset │ │ │ ├── Contents.json │ │ │ ├── messages.png │ │ │ ├── messages@2x.png │ │ │ └── messages@3x.png │ │ ├── playBtn.imageset │ │ │ ├── Contents.json │ │ │ ├── playBtn.png │ │ │ ├── playBtn@2x.png │ │ │ └── playBtn@3x.png │ │ ├── profile-selected.imageset │ │ │ ├── Contents.json │ │ │ ├── profile-selected.png │ │ │ ├── profile-selected@2x.png │ │ │ └── profile-selected@3x.png │ │ ├── profile.imageset │ │ │ ├── Contents.json │ │ │ ├── profile.png │ │ │ ├── profile@2x.png │ │ │ └── profile@3x.png │ │ ├── retweet.imageset │ │ │ ├── Contents.json │ │ │ ├── retweet.png │ │ │ ├── retweet@2x.png │ │ │ └── retweet@3x.png │ │ ├── search.imageset │ │ │ ├── Contents.json │ │ │ ├── search.png │ │ │ ├── search@2x.png │ │ │ └── search@3x.png │ │ ├── setting.imageset │ │ │ ├── Contents.json │ │ │ ├── setting.png │ │ │ ├── setting@2x.png │ │ │ └── setting@3x.png │ │ ├── share.imageset │ │ │ ├── Contents.json │ │ │ ├── share.png │ │ │ ├── share@2x.png │ │ │ └── share@3x.png │ │ └── verify.imageset │ │ │ ├── Contents.json │ │ │ ├── verify.png │ │ │ ├── verify@2x.png │ │ │ └── verify@3x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── SceneDelegate.swift ├── Utils │ ├── ColorTheme.swift │ ├── Constants.swift │ ├── Date+Int.swift │ ├── NSAttributedString.swift │ ├── NSTextAttachment.swift │ ├── OAuthCrypto.swift │ ├── TwitterOAuth.swift │ ├── UIButton.swift │ ├── UIString + Double.swift │ ├── UIView.swift │ └── UIViewController.swift └── View │ ├── CategoryViews │ ├── CategoryDetailCell.swift │ ├── CategoryMenuBar.swift │ └── CategoryMenuCollectionViewCell.swift │ ├── CustomImageView.swift │ ├── CustomViews │ ├── CustomImageLoader.swift │ ├── CustomLocationSearchView.swift │ ├── CustomMainSearchHeader.swift │ ├── CustomProfileNavBar.swift │ ├── CustomQuotedView.swift │ ├── CustomQuotedWithImageView.swift │ ├── CustomSearchHeader.swift │ ├── CustomUserProfileNavBar.swift │ ├── LoginCardView.swift │ ├── ProfileStrechyHeader.swift │ └── StretchyCollectionViewFlowLayout.swift │ ├── DefaultCollectionViewCell.swift │ ├── FollowDetails │ └── FollowDetailCollectionViewCell.swift │ ├── ImageCollectionViewCell.swift │ ├── Posts Types │ ├── PostWithImageAndQuoteCollectionViewCell.swift │ ├── PostWithImageAndQuotedImageCollectionViewCell.swift │ ├── PostWithImagesCollectionViewCell.swift │ ├── QuotedPostCollectionViewCell.swift │ ├── QuotedPostWithImageCollectionViewCell.swift │ └── SimpleTextPostCollectionViewCell.swift │ ├── ProfileHeaderCollectionViewCell.swift │ ├── SearchCategoryCell │ ├── ExploreLocationTableViewCell.swift │ ├── HeaderCollectionReusableView.swift │ ├── HeaderTableViewCell.swift │ └── TrendingCollectionViewCell.swift │ └── Tweet Detail Post Types │ ├── TDPostWithImageAndQuoteCollectionViewCell.swift │ ├── TDPostWithImageAndQuotedImageCollectionViewCell.swift │ ├── TDPostWithImagesCollectionViewCell.swift │ ├── TDQuotedPostCollectionViewCell.swift │ ├── TDQuotedPostWithImageCollectionViewCell.swift │ └── TDSimpleTextPostCollectionViewCell.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── CachedResponseHandler.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protector.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift ├── GSMessages │ ├── GSMessages │ │ ├── GSMessage.swift │ │ └── GSMessages.h │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── dheerajkumarsharma.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── GSMessages.xcscheme │ │ ├── Pods-Dovve.xcscheme │ │ ├── SwiftKeychainWrapper.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ ├── TwitterCore.xcscheme │ │ ├── TwitterKit.xcscheme │ │ └── xcschememanagement.plist ├── SwiftKeychainWrapper │ ├── LICENSE │ ├── README.md │ └── SwiftKeychainWrapper │ │ ├── KeychainItemAccessibility.swift │ │ ├── KeychainWrapper.swift │ │ └── SwiftKeychainWrapper.h ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON │ │ └── SwiftyJSON.swift ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-Info.plist │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ └── Alamofire.xcconfig │ ├── GSMessages │ │ ├── GSMessages-Info.plist │ │ ├── GSMessages-dummy.m │ │ ├── GSMessages-prefix.pch │ │ ├── GSMessages-umbrella.h │ │ ├── GSMessages.modulemap │ │ └── GSMessages.xcconfig │ ├── Pods-Dovve │ │ ├── Pods-Dovve-Info.plist │ │ ├── Pods-Dovve-acknowledgements.markdown │ │ ├── Pods-Dovve-acknowledgements.plist │ │ ├── Pods-Dovve-dummy.m │ │ ├── Pods-Dovve-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-Dovve-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-Dovve-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-Dovve-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-Dovve-frameworks.sh │ │ ├── Pods-Dovve-resources-Debug-input-files.xcfilelist │ │ ├── Pods-Dovve-resources-Debug-output-files.xcfilelist │ │ ├── Pods-Dovve-resources-Release-input-files.xcfilelist │ │ ├── Pods-Dovve-resources-Release-output-files.xcfilelist │ │ ├── Pods-Dovve-resources.sh │ │ ├── Pods-Dovve-umbrella.h │ │ ├── Pods-Dovve.debug.xcconfig │ │ ├── Pods-Dovve.modulemap │ │ └── Pods-Dovve.release.xcconfig │ ├── SwiftKeychainWrapper │ │ ├── SwiftKeychainWrapper-Info.plist │ │ ├── SwiftKeychainWrapper-dummy.m │ │ ├── SwiftKeychainWrapper-prefix.pch │ │ ├── SwiftKeychainWrapper-umbrella.h │ │ ├── SwiftKeychainWrapper.modulemap │ │ └── SwiftKeychainWrapper.xcconfig │ ├── SwiftyJSON │ │ ├── SwiftyJSON-Info.plist │ │ ├── SwiftyJSON-dummy.m │ │ ├── SwiftyJSON-prefix.pch │ │ ├── SwiftyJSON-umbrella.h │ │ ├── SwiftyJSON.modulemap │ │ └── SwiftyJSON.xcconfig │ ├── TwitterCore │ │ └── TwitterCore.xcconfig │ └── TwitterKit │ │ └── TwitterKit.xcconfig ├── TwitterCore │ ├── README.md │ └── iOS │ │ └── TwitterCore.framework │ │ ├── Headers │ │ ├── TWTRAPIErrorCode.h │ │ ├── TWTRAuthConfig.h │ │ ├── TWTRAuthSession.h │ │ ├── TWTRColorUtil.h │ │ ├── TWTRConstants.h │ │ ├── TWTRCoreOAuthSigning.h │ │ ├── TWTRDefines.h │ │ ├── TWTRGuestSession.h │ │ ├── TWTRSession.h │ │ ├── TWTRSessionStore.h │ │ └── TwitterCore.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── module.modulemap │ │ └── module.private.modulemap │ │ ├── PrivateHeaders │ │ ├── TWTRAPIConstants.h │ │ ├── TWTRAPIConstantsUser.h │ │ ├── TWTRAPINetworkErrorsShim.h │ │ ├── TWTRAPIServiceConfig.h │ │ ├── TWTRAPIServiceConfigRegistry.h │ │ ├── TWTRAppAPIClient.h │ │ ├── TWTRAppAuthProvider.h │ │ ├── TWTRAppInstallationUUID.h │ │ ├── TWTRAppleSocialAuthenticaticationProvider.h │ │ ├── TWTRAssertionMacros.h │ │ ├── TWTRAuthConfigSessionsValidator.h │ │ ├── TWTRAuthConfigSessionsValidator_Private.h │ │ ├── TWTRAuthConfigStore.h │ │ ├── TWTRAuthenticationConstants.h │ │ ├── TWTRAuthenticationProvider.h │ │ ├── TWTRAuthenticationProvider_Private.h │ │ ├── TWTRAuthenticator.h │ │ ├── TWTRCoreConstants.h │ │ ├── TWTRCoreLanguage.h │ │ ├── TWTRCoreOAuthSigning+Private.h │ │ ├── TWTRDateFormatters.h │ │ ├── TWTRDateFormatters_Private.h │ │ ├── TWTRDateUtil.h │ │ ├── TWTRDictUtil.h │ │ ├── TWTRGCOAuth.h │ │ ├── TWTRGenericKeychainItem.h │ │ ├── TWTRGuestAuthProvider.h │ │ ├── TWTRGuestAuthRequestSigner.h │ │ ├── TWTRIdentifier.h │ │ ├── TWTRKeychainWrapper.h │ │ ├── TWTRKeychainWrapper_Private.h │ │ ├── TWTRMultiThreadUtil.h │ │ ├── TWTRMultipartFormDocument.h │ │ ├── TWTRNetworking.h │ │ ├── TWTRNetworkingConstants.h │ │ ├── TWTRNetworkingPipeline.h │ │ ├── TWTRNetworkingPipelinePackage.h │ │ ├── TWTRNetworkingPipelineQueue.h │ │ ├── TWTRNetworkingUtil.h │ │ ├── TWTRRequestSigningOperation.h │ │ ├── TWTRResourcesUtil.h │ │ ├── TWTRSecItemWrapper.h │ │ ├── TWTRSessionMigrating.h │ │ ├── TWTRSessionRefreshStrategy.h │ │ ├── TWTRSessionStore_Private.h │ │ ├── TWTRSession_Private.h │ │ ├── TWTRTokenOnlyAuthSession.h │ │ ├── TWTRUserAPIClient.h │ │ ├── TWTRUserAuthRequestSigner.h │ │ ├── TWTRUserSessionVerifier.h │ │ └── TWTRUtils.h │ │ └── TwitterCore └── TwitterKit │ ├── README.md │ └── iOS │ └── TwitterKit.framework │ ├── Headers │ ├── TWTRAPIClient.h │ ├── TWTRCollectionTimelineDataSource.h │ ├── TWTRComposer.h │ ├── TWTRComposerViewController.h │ ├── TWTRJSONConvertible.h │ ├── TWTRKit.h │ ├── TWTRListTimelineDataSource.h │ ├── TWTRLogInButton.h │ ├── TWTRMediaEntitySize.h │ ├── TWTRMoPubAdConfiguration.h │ ├── TWTRMoPubNativeAdContainerView.h │ ├── TWTRNotificationConstants.h │ ├── TWTROAuthSigning.h │ ├── TWTRSearchTimelineDataSource.h │ ├── TWTRTimelineCursor.h │ ├── TWTRTimelineDataSource.h │ ├── TWTRTimelineDelegate.h │ ├── TWTRTimelineFilter.h │ ├── TWTRTimelineType.h │ ├── TWTRTimelineViewController.h │ ├── TWTRTweet.h │ ├── TWTRTweetCashtagEntity.h │ ├── TWTRTweetEntity.h │ ├── TWTRTweetHashtagEntity.h │ ├── TWTRTweetTableViewCell.h │ ├── TWTRTweetUrlEntity.h │ ├── TWTRTweetUserMentionEntity.h │ ├── TWTRTweetView.h │ ├── TWTRTweetViewDelegate.h │ ├── TWTRTwitter.h │ ├── TWTRUser.h │ ├── TWTRUserTimelineDataSource.h │ ├── TWTRVideoMetaData.h │ ├── TWTRVideoPlaybackState.h │ └── TwitterKit-Prefix.pch │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ ├── PrivateHeaders │ ├── TWTRConstants_Private.h │ └── TWTRDateFormatter.h │ ├── TwitterKit │ └── TwitterKitResources.bundle │ ├── TFSScribe.momd │ ├── TFSScribe.mom │ └── VersionInfo.plist │ ├── ar.lproj │ └── Localizable.strings │ ├── bg.lproj │ └── Localizable.strings │ ├── bn.lproj │ └── Localizable.strings │ ├── ca.lproj │ └── Localizable.strings │ ├── cs.lproj │ └── Localizable.strings │ ├── da.lproj │ └── Localizable.strings │ ├── de.lproj │ └── Localizable.strings │ ├── el.lproj │ └── Localizable.strings │ ├── emailshare.png │ ├── emailshare@2x.png │ ├── emailshare@3x.png │ ├── en-gb.lproj │ └── Localizable.strings │ ├── en.lproj │ └── Localizable.strings │ ├── es-MX.lproj │ └── Localizable.strings │ ├── es.lproj │ └── Localizable.strings │ ├── fa.lproj │ └── Localizable.strings │ ├── fi.lproj │ └── Localizable.strings │ ├── fr.lproj │ └── Localizable.strings │ ├── gu.lproj │ └── Localizable.strings │ ├── he.lproj │ └── Localizable.strings │ ├── hi.lproj │ └── Localizable.strings │ ├── hr.lproj │ └── Localizable.strings │ ├── hu.lproj │ └── Localizable.strings │ ├── icn_vine_badge.png │ ├── icn_vine_badge@2x.png │ ├── icn_vine_badge@3x.png │ ├── id.lproj │ └── Localizable.strings │ ├── it.lproj │ └── Localizable.strings │ ├── ja.lproj │ └── Localizable.strings │ ├── kn.lproj │ └── Localizable.strings │ ├── ko.lproj │ └── Localizable.strings │ ├── mr.lproj │ └── Localizable.strings │ ├── ms.lproj │ └── Localizable.strings │ ├── nb.lproj │ └── Localizable.strings │ ├── nl.lproj │ └── Localizable.strings │ ├── pl.lproj │ └── Localizable.strings │ ├── pt.lproj │ └── Localizable.strings │ ├── ro.lproj │ └── Localizable.strings │ ├── ru.lproj │ └── Localizable.strings │ ├── sk.lproj │ └── Localizable.strings │ ├── sr.lproj │ └── Localizable.strings │ ├── sv.lproj │ └── Localizable.strings │ ├── ta.lproj │ └── Localizable.strings │ ├── th.lproj │ └── Localizable.strings │ ├── tl.lproj │ └── Localizable.strings │ ├── tr.lproj │ └── Localizable.strings │ ├── twtr-heart-animation-sheet-large.png │ ├── twtr-heart-animation-sheet-large@2x.png │ ├── twtr-heart-animation-sheet-large@3x.png │ ├── twtr-heart-animation-sheet.png │ ├── twtr-heart-animation-sheet@2x.png │ ├── twtr-heart-animation-sheet@3x.png │ ├── twtr-icn-heart-off-large.png │ ├── twtr-icn-heart-off-large@2x.png │ ├── twtr-icn-heart-off-large@3x.png │ ├── twtr-icn-heart-off.png │ ├── twtr-icn-heart-off@2x.png │ ├── twtr-icn-heart-off@3x.png │ ├── twtr-icn-heart-on.png │ ├── twtr-icn-heart-on@2x.png │ ├── twtr-icn-heart-on@3x.png │ ├── twtr-icn-logo-white.png │ ├── twtr-icn-logo-white@2x.png │ ├── twtr-icn-logo-white@3x.png │ ├── twtr-icn-logo.png │ ├── twtr-icn-logo@2x.png │ ├── twtr-icn-logo@3x.png │ ├── twtr-icn-media-pause.png │ ├── twtr-icn-media-pause@2x.png │ ├── twtr-icn-media-pause@3x.png │ ├── twtr-icn-media-play.png │ ├── twtr-icn-media-play@2x.png │ ├── twtr-icn-media-play@3x.png │ ├── twtr-icn-media-replay.png │ ├── twtr-icn-media-replay@2x.png │ ├── twtr-icn-media-replay@3x.png │ ├── twtr-icn-media-scrubber.png │ ├── twtr-icn-media-scrubber@2x.png │ ├── twtr-icn-media-scrubber@3x.png │ ├── twtr-icn-tweet-retweeted-by-dark.png │ ├── twtr-icn-tweet-retweeted-by-dark@2x.png │ ├── twtr-icn-tweet-retweeted-by-dark@3x.png │ ├── twtr-icn-tweet-retweeted-by-light.png │ ├── twtr-icn-tweet-retweeted-by-light@2x.png │ ├── twtr-icn-tweet-retweeted-by-light@3x.png │ ├── twtr-icn-tweet-verified.png │ ├── twtr-icn-tweet-verified@2x.png │ ├── twtr-icn-tweet-verified@3x.png │ ├── twtr-icn_close.png │ ├── twtr-icn_close@2x.png │ ├── twtr-icn_close@3x.png │ ├── twtr-icon-heart-on-large.png │ ├── twtr-icon-heart-on-large@2x.png │ ├── twtr-icon-heart-on-large@3x.png │ ├── twtr-media-expand.png │ ├── twtr-media-expand@2x.png │ ├── twtr-media-expand@3x.png │ ├── twtr-play.png │ ├── twtr-play@2x.png │ ├── twtr-play@3x.png │ ├── twtr-share-large.png │ ├── twtr-share-large@2x.png │ ├── twtr-share-large@3x.png │ ├── twtr-share.png │ ├── twtr-share@2x.png │ ├── twtr-share@3x.png │ ├── twttr-icn-tweet-place-holder-photo-error.png │ ├── twttr-icn-tweet-place-holder-photo-error@2x.png │ ├── twttr-icn-tweet-place-holder-photo-error@3x.png │ ├── twttr-icn-tweet-place-holder-photo.png │ ├── twttr-icn-tweet-place-holder-photo@2x.png │ ├── twttr-icn-tweet-place-holder-photo@3x.png │ ├── uk.lproj │ └── Localizable.strings │ ├── ur.lproj │ └── Localizable.strings │ ├── vi.lproj │ └── Localizable.strings │ ├── zh-Hans.lproj │ └── Localizable.strings │ └── zh-Hant.lproj │ └── Localizable.strings └── README.md /Dovve.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dovve.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dovve.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Dovve.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dovve.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dovve.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Dovve.xcworkspace/xcuserdata/dheerajkumarsharma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve.xcworkspace/xcuserdata/dheerajkumarsharma.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Dovve/Controller/Base/ImageDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Base/ImageDetailViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Base/TweetDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Base/TweetDetailViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Base/UserProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Base/UserProfileViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Base/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Base/WebViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/CustomTabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/CustomTabBarViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/FollowDetails/FollowDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/FollowDetails/FollowDetailViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/FollowDetails/UserFollowersCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/FollowDetails/UserFollowersCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/Controller/FollowDetails/UserFollowingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/FollowDetails/UserFollowingCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/Controller/Login/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Login/LoginViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Main/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Main/HomeViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Main/MentionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Main/MentionsViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Main/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Main/ProfileViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/Main/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/Main/SearchViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/ExploreSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/ExploreSettingsViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/LatestSearchCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/LatestSearchCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/PeopleSearchCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/PeopleSearchCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/SearchWithCategoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/SearchWithCategoryViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/SelectLocationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/SelectLocationViewController.swift -------------------------------------------------------------------------------- /Dovve/Controller/SearchCategoryDetails/TopSearchCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Controller/SearchCategoryDetails/TopSearchCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/Model/ Structures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/ Structures.swift -------------------------------------------------------------------------------- /Dovve/Model/FetchWoeidModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/FetchWoeidModel.swift -------------------------------------------------------------------------------- /Dovve/Model/FollowerListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/FollowerListModel.swift -------------------------------------------------------------------------------- /Dovve/Model/FollowingListModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/FollowingListModel.swift -------------------------------------------------------------------------------- /Dovve/Model/GetFollowingStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/GetFollowingStatus.swift -------------------------------------------------------------------------------- /Dovve/Model/GetTweetWithIdModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/GetTweetWithIdModel.swift -------------------------------------------------------------------------------- /Dovve/Model/HomeTimeLineModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/HomeTimeLineModel.swift -------------------------------------------------------------------------------- /Dovve/Model/MentionTimelineModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/MentionTimelineModel.swift -------------------------------------------------------------------------------- /Dovve/Model/SearchModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/SearchModel.swift -------------------------------------------------------------------------------- /Dovve/Model/SearchUserModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/SearchUserModel.swift -------------------------------------------------------------------------------- /Dovve/Model/TrendsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/TrendsModel.swift -------------------------------------------------------------------------------- /Dovve/Model/UserProfileModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/UserProfileModel.swift -------------------------------------------------------------------------------- /Dovve/Model/UserTimeLineModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/UserTimeLineModel.swift -------------------------------------------------------------------------------- /Dovve/Model/Woeid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Model/Woeid.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/AppDelegate.swift -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/29-1.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-41.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/AppIcon.appiconset/Icon-Small-42.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back2.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/back2.imageset/back@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/comment.imageset/comment@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/demo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/demo.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/demo.imageset/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/demo.imageset/demo.jpg -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/explore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/explore.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/explore.imageset/explore@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/favorited.imageset/heart@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/heart.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/heart.imageset/heart@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home-selected.imageset/home-selected@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home.imageset/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home.imageset/home@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/home.imageset/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/home.imageset/home@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions-selected.imageset/mentions-selected@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/mentions.imageset/mentions@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages-selected.imageset/messages-selected@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/messages.imageset/messages@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/playBtn.imageset/playBtn@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile-selected.imageset/profile-selected@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/profile.imageset/profile@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/retweet.imageset/retweet@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/search.imageset/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/search.imageset/search@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/search.imageset/search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/search.imageset/search@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/setting.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/setting.imageset/setting@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/share.imageset/share.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/share.imageset/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/share.imageset/share@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/share.imageset/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/share.imageset/share@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/verify.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/verify.imageset/Contents.json -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify@2x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Assets.xcassets/verify.imageset/verify@3x.png -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Dovve/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /Dovve/SupportingFiles/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/SupportingFiles/SceneDelegate.swift -------------------------------------------------------------------------------- /Dovve/Utils/ColorTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/ColorTheme.swift -------------------------------------------------------------------------------- /Dovve/Utils/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/Constants.swift -------------------------------------------------------------------------------- /Dovve/Utils/Date+Int.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/Date+Int.swift -------------------------------------------------------------------------------- /Dovve/Utils/NSAttributedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/NSAttributedString.swift -------------------------------------------------------------------------------- /Dovve/Utils/NSTextAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/NSTextAttachment.swift -------------------------------------------------------------------------------- /Dovve/Utils/OAuthCrypto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/OAuthCrypto.swift -------------------------------------------------------------------------------- /Dovve/Utils/TwitterOAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/TwitterOAuth.swift -------------------------------------------------------------------------------- /Dovve/Utils/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/UIButton.swift -------------------------------------------------------------------------------- /Dovve/Utils/UIString + Double.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/UIString + Double.swift -------------------------------------------------------------------------------- /Dovve/Utils/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/UIView.swift -------------------------------------------------------------------------------- /Dovve/Utils/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/Utils/UIViewController.swift -------------------------------------------------------------------------------- /Dovve/View/CategoryViews/CategoryDetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CategoryViews/CategoryDetailCell.swift -------------------------------------------------------------------------------- /Dovve/View/CategoryViews/CategoryMenuBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CategoryViews/CategoryMenuBar.swift -------------------------------------------------------------------------------- /Dovve/View/CategoryViews/CategoryMenuCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CategoryViews/CategoryMenuCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/CustomImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomImageView.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomImageLoader.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomLocationSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomLocationSearchView.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomMainSearchHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomMainSearchHeader.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomProfileNavBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomProfileNavBar.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomQuotedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomQuotedView.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomQuotedWithImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomQuotedWithImageView.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomSearchHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomSearchHeader.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/CustomUserProfileNavBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/CustomUserProfileNavBar.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/LoginCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/LoginCardView.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/ProfileStrechyHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/ProfileStrechyHeader.swift -------------------------------------------------------------------------------- /Dovve/View/CustomViews/StretchyCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/CustomViews/StretchyCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /Dovve/View/DefaultCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/DefaultCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/FollowDetails/FollowDetailCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/FollowDetails/FollowDetailCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/ImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/ImageCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/PostWithImageAndQuoteCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/PostWithImageAndQuoteCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/PostWithImageAndQuotedImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/PostWithImageAndQuotedImageCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/PostWithImagesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/PostWithImagesCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/QuotedPostCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/QuotedPostCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/QuotedPostWithImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/QuotedPostWithImageCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Posts Types/SimpleTextPostCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Posts Types/SimpleTextPostCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/ProfileHeaderCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/ProfileHeaderCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/SearchCategoryCell/ExploreLocationTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/SearchCategoryCell/ExploreLocationTableViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/SearchCategoryCell/HeaderCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/SearchCategoryCell/HeaderCollectionReusableView.swift -------------------------------------------------------------------------------- /Dovve/View/SearchCategoryCell/HeaderTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/SearchCategoryCell/HeaderTableViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/SearchCategoryCell/TrendingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/SearchCategoryCell/TrendingCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDPostWithImageAndQuoteCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDPostWithImageAndQuoteCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDPostWithImageAndQuotedImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDPostWithImageAndQuotedImageCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDPostWithImagesCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDPostWithImagesCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDQuotedPostCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDQuotedPostCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDQuotedPostWithImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDQuotedPostWithImageCollectionViewCell.swift -------------------------------------------------------------------------------- /Dovve/View/Tweet Detail Post Types/TDSimpleTextPostCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Dovve/View/Tweet Detail Post Types/TDSimpleTextPostCollectionViewCell.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/OperationQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/OperationQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Protector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Protector.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/GSMessages/GSMessages/GSMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/GSMessages/GSMessages/GSMessage.swift -------------------------------------------------------------------------------- /Pods/GSMessages/GSMessages/GSMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/GSMessages/GSMessages/GSMessages.h -------------------------------------------------------------------------------- /Pods/GSMessages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/GSMessages/LICENSE -------------------------------------------------------------------------------- /Pods/GSMessages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/GSMessages/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/GSMessages.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/GSMessages.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/Pods-Dovve.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/Pods-Dovve.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/SwiftKeychainWrapper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/SwiftKeychainWrapper.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/SwiftyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/SwiftyJSON.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/TwitterCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/TwitterCore.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/TwitterKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/TwitterKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Pods.xcodeproj/xcuserdata/dheerajkumarsharma.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SwiftKeychainWrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftKeychainWrapper/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftKeychainWrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftKeychainWrapper/README.md -------------------------------------------------------------------------------- /Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/KeychainItemAccessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/KeychainItemAccessibility.swift -------------------------------------------------------------------------------- /Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/KeychainWrapper.swift -------------------------------------------------------------------------------- /Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/SwiftKeychainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftKeychainWrapper/SwiftKeychainWrapper/SwiftKeychainWrapper.h -------------------------------------------------------------------------------- /Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /Pods/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GSMessages/GSMessages.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/GSMessages/GSMessages.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TwitterKitResources.bundle -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TwitterKitResources.bundle -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Dovve/Pods-Dovve.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/Pods-Dovve/Pods-Dovve.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftKeychainWrapper/SwiftKeychainWrapper.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/TwitterCore/TwitterCore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/TwitterCore/TwitterCore.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/TwitterKit/TwitterKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/Target Support Files/TwitterKit/TwitterKit.xcconfig -------------------------------------------------------------------------------- /Pods/TwitterCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/README.md -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAPIErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAPIErrorCode.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAuthConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAuthConfig.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAuthSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRAuthSession.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRColorUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRColorUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRConstants.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRCoreOAuthSigning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRCoreOAuthSigning.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRDefines.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRGuestSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRGuestSession.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRSession.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRSessionStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TWTRSessionStore.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TwitterCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Headers/TwitterCore.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Info.plist -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/Modules/module.private.modulemap: -------------------------------------------------------------------------------- 1 | explicit module TwitterCore.Private { 2 | } 3 | -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIConstants.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIConstantsUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIConstantsUser.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPINetworkErrorsShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPINetworkErrorsShim.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIServiceConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIServiceConfig.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIServiceConfigRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAPIServiceConfigRegistry.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppAPIClient.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppAuthProvider.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppInstallationUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppInstallationUUID.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppleSocialAuthenticaticationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAppleSocialAuthenticaticationProvider.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAssertionMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAssertionMacros.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigSessionsValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigSessionsValidator.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigSessionsValidator_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigSessionsValidator_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthConfigStore.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationProvider.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationProvider_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationProvider_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRAuthenticator.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreConstants.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreLanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreLanguage.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreOAuthSigning+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRCoreOAuthSigning+Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateFormatters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateFormatters.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateFormatters_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateFormatters_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDateUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDictUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRDictUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGCOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGCOAuth.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGenericKeychainItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGenericKeychainItem.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGuestAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGuestAuthProvider.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGuestAuthRequestSigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRGuestAuthRequestSigner.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRIdentifier.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRKeychainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRKeychainWrapper.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRKeychainWrapper_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRKeychainWrapper_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRMultiThreadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRMultiThreadUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRMultipartFormDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRMultipartFormDocument.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworking.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingConstants.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipeline.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipelinePackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipelinePackage.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipelineQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingPipelineQueue.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRNetworkingUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRRequestSigningOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRRequestSigningOperation.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRResourcesUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRResourcesUtil.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSecItemWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSecItemWrapper.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionMigrating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionMigrating.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionRefreshStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionRefreshStrategy.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionStore_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSessionStore_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSession_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRSession_Private.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRTokenOnlyAuthSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRTokenOnlyAuthSession.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserAPIClient.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserAuthRequestSigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserAuthRequestSigner.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserSessionVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUserSessionVerifier.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/PrivateHeaders/TWTRUtils.h -------------------------------------------------------------------------------- /Pods/TwitterCore/iOS/TwitterCore.framework/TwitterCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterCore/iOS/TwitterCore.framework/TwitterCore -------------------------------------------------------------------------------- /Pods/TwitterKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/README.md -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRAPIClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRAPIClient.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRCollectionTimelineDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRCollectionTimelineDataSource.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRComposer.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRComposerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRComposerViewController.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRJSONConvertible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRJSONConvertible.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRKit.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRListTimelineDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRListTimelineDataSource.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRLogInButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRLogInButton.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMediaEntitySize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMediaEntitySize.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMoPubAdConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMoPubAdConfiguration.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMoPubNativeAdContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRMoPubNativeAdContainerView.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRNotificationConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRNotificationConstants.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTROAuthSigning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTROAuthSigning.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRSearchTimelineDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRSearchTimelineDataSource.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineCursor.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineDataSource.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineDelegate.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineFilter.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineType.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTimelineViewController.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweet.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetCashtagEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetCashtagEntity.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetEntity.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetHashtagEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetHashtagEntity.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetTableViewCell.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetUrlEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetUrlEntity.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetUserMentionEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetUserMentionEntity.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetView.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTweetViewDelegate.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTwitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRTwitter.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRUser.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRUserTimelineDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRUserTimelineDataSource.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRVideoMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRVideoMetaData.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRVideoPlaybackState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TWTRVideoPlaybackState.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TwitterKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Headers/TwitterKit-Prefix.pch -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Info.plist -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/PrivateHeaders/TWTRConstants_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/PrivateHeaders/TWTRConstants_Private.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/PrivateHeaders/TWTRDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/PrivateHeaders/TWTRDateFormatter.h -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKit -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/TFSScribe.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/TFSScribe.mom -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/VersionInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/TFSScribe.momd/VersionInfo.plist -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/bn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/bn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/emailshare@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/en-gb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/en-gb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/es-MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/es-MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/gu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/gu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/icn_vine_badge@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/kn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/kn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/mr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/mr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ta.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ta.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/tl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/tl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-heart-animation-sheet@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-off@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-heart-on@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo-white@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-logo@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-pause@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-play@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-replay@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-media-scrubber@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-dark@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-retweeted-by-light@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn-tweet-verified@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icn_close@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-icon-heart-on-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-media-expand@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-play@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share-large@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twtr-share@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo-error@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@2x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/twttr-icn-tweet-place-holder-photo@3x.png -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/ur.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/Pods/TwitterKit/iOS/TwitterKit.framework/TwitterKitResources.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dheerajghub/Dovve/HEAD/README.md --------------------------------------------------------------------------------