Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependencies #1384

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading