Skip to content

Commit

Permalink
Merge pull request #1384 from RomanPodymov/master
Browse files Browse the repository at this point in the history
Dependencies
  • Loading branch information
Ivansss committed Oct 30, 2023
2 parents aabeafe + 12ed448 commit 39c8060
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion NextcloudTalk/VLCKitVideoViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ import MobileVLCKit
private func mediaReachedEnd() -> Bool {
guard let mediaPlayer = self.mediaPlayer else { return false }

return mediaPlayer.remainingTime.stringValue == "00:00"
return mediaPlayer.remainingTime?.stringValue == "00:00"
}

// MARK: Controls Visibility
Expand Down
23 changes: 14 additions & 9 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
source 'https://cdn.cocoapods.org/'
platform :ios, '15.0'

def common_dependencies
pod 'AFNetworking', '3.2.0'
pod 'UICKeyChainStore'
end

def common_dependencies_ext
common_dependencies
pod 'MBProgressHUD', '~> 1.2.0'
end

target "NextcloudTalk" do
pod 'AFNetworking', "3.2.0"
common_dependencies_ext
pod 'DateTools'
pod 'JDStatusBarNotification'
pod 'UICKeyChainStore'
pod 'MaterialComponents/ActivityIndicator'
pod 'Toast', '~> 4.0.0'
pod 'MBProgressHUD', '~> 1.2.0'
pod 'libPhoneNumber-iOS'
pod 'MZTimerLabel'
pod 'MobileVLCKit', '~>3.3.0'
pod 'MobileVLCKit', '~> 3.5.0'
end

target "NotificationServiceExtension" do
pod 'AFNetworking', "3.2.0"
pod 'UICKeyChainStore'
common_dependencies
end

target "ShareExtension" do
pod 'AFNetworking', "3.2.0"
pod 'UICKeyChainStore'
pod 'MBProgressHUD', '~> 1.2.0'
common_dependencies_ext
end

pre_install do |installer|
Expand Down
1 change: 1 addition & 0 deletions ShareExtension/ShareViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#import "ShareViewController.h"

#import <Intents/Intents.h>
#import <MobileCoreServices/MobileCoreServices.h>

#import "NCAPIController.h"
#import "NCAppBranding.h"
Expand Down

0 comments on commit 39c8060

Please sign in to comment.