Simple chat program with server/client in C
Make your switcher Musical!
Jailbreak Tweak
Basic IRC client/server infrastructure written in C
Siri plugin manager
Wi-fi toggle example for OpenSiri
A simple 2D game language
issue closedvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Issue Summary
Trying to install the "VimeoUpload" using cocoapods, but I get the error Unable to find a specification for VimeoUpload
Reproduction Steps
I created a fresh new XCode project, use the command pod init, then added the line
pod "VimeoUpload"
to the PodFile, run pod install, but get the error: Unable to find a specification for VimeoUpload
I have run both:
pod repo update
and
pod install --repo-update
but it did not resolve the issue.
See below copy of command and results as in the macOS Terminal
Expected Behavior
I expect the VimeoUpload pod to be install/added
Actual Behavior
What currently happens as a result of the reproduction steps?
tgs@HOTH vimeo upload % cat Podfile
Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'vimeo upload' do
Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
Pods for vimeo upload
pod "VimeoUpload"
target 'vimeo uploadTests' do inherit! :search_paths # Pods for testing end
target 'vimeo uploadUITests' do # Pods for testing end
end
tgs@HOTH vimeo upload % pod install
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
. - mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % pod repo update
Updating spec repo trunk
tgs@HOTH vimeo upload % pod install
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
. - mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % pod install --repo-update
Updating local specs repositories
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % ll Pods total 0 drwxr-xr-x 5 tgs staff 160 17 Dec 13:18 . drwxr-xr-x 8 tgs staff 256 17 Dec 13:19 .. drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Headers drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Local Podspecs drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Target Support Files tgs@HOTH vimeo upload %
closed time in 5 days
theogscottissue commentvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Hi there yes you can use the version in the develop branch on your project. We have no plans of releasing this via Cocoapods in the near future.
comment created time in 5 days
issue commentvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
pod 'VimeoUpload', git: 'https://github.com/vimeo/VimeoUpload.git', branch: 'develop'
When can we expect the release? Can I use dev branch checkout in my release ready project? which will be released next month.
comment created time in 5 days
issue closedvimeo/VIMNetworking
Come Watch @Myrrhai on Vimeo.com
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai #vimeo
closed time in 8 days
myrrhaiissue openedvimeo/VIMNetworking
Come Watch @Myrrhai on Vimeo.com
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai #vimeo
created time in 8 days
issue closedvimeo/VimeoUpload
Come Watch @Myrrhai on Vimeo.com
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai #vimeo
closed time in 8 days
myrrhaiissue closedvimeo/VimeoNetworking
Come Watch @Myrrhai on Vimeo.com
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai #vimeo
closed time in 8 days
myrrhaiissue openedvimeo/VimeoUpload
Come Watch @Myrrhai on Vimeo.com
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai #vimeo
created time in 8 days
issue openedvimeo/VimeoNetworking
Leave a comment on my Video(s) on Vimeo about GitHub #twitch #myrrhai
created time in 8 days
issue openedvimeo/VimeoNetworking
VimeoClient init creates memory leak
Using Debug Memory Graph in Xcode I noticed that whenever I create VimeoClient, it creates memory leak in the app. To confirm if this is not because my app creates that, I created dummy app with just one UIViewController and with this test code:
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let appConfiguration = AppConfiguration(
clientIdentifier: Constant.VIMEO_CLIENT_IDENTIFIER,
clientSecret: Constant.VIMEO_CLIENT_SECRETS,
scopes: [.Public, .Private, .Interact, .Create, .Delete, .Edit],
keychainService: Constant.VIMEO_KEYCHAIN_SERVICE)
let vimeoClient = VimeoClient(appConfiguration: appConfiguration)
let authenticationController = AuthenticationController(client: vimeoClient, appConfiguration: appConfiguration) { (vimeoSessionManager) -> VimeoSessionManager in
return vimeoSessionManager
}
}
}
This is what I get in Memory Graph after running the app:
Any ideas what can cause that or maybe my implementation is wrong ?
created time in 12 days
startedfouad/wikiplaylist
started time in 13 days
startedmaxogden/menubar
started time in 15 days
startedelectron-react-boilerplate/electron-react-boilerplate
started time in 15 days
startedjameslittle230/stork
started time in 16 days
startedwillmcgugan/rich
started time in 21 days
startedtailwindlabs/tailwindcss
started time in 21 days
starteddeezer/spleeter
started time in a month
issue commentvimeo/VimeoNetworking
AuthenticationController documentation is wrong.
Hello, any update on this?
comment created time in a month
issue commentvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Hi there
Are you integrating with a target in your Podfile? Whatever target is consuming VimeoUpload should specify the SWIFT_VERSION in your own project build settings.
For what it’s worth we use Swift 5 on VimeoUpload and any new Xcode project you create should set that version as the default.
comment created time in a month
issue commentvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Looks like SWIFT_VERSION
is missing, which Swift compiler version are being used ?
pod install
Analyzing dependencies
Pre-downloading: VimeoUpload
from https://github.com/vimeo/VimeoUpload.git
, branch develop
Downloading dependencies
Installing VimeoNetworking (4.1.0)
Installing VimeoUpload (3.1.0)
[!] Unable to determine Swift version for the following pods:
VimeoUpload
does not specify a Swift version and none of the targets (vimeo upload
) integrating it have theSWIFT_VERSION
attribute set. Please contact the author or set theSWIFT_VERSION
attribute in at least one of the targets that integrate this pod.
comment created time in a month
issue commentvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Hi there, and thanks for opening this issue!
VimeoUpload's is not currently published in the Cocoapods repository and it is unlikely to be in the near future.
What this means is that you have to specify the repository and branch from which your Podfile should source it from ie
pod 'VimeoUpload', git: 'https://github.com/vimeo/VimeoUpload.git', branch: 'develop'
I hope it helps!
comment created time in a month
issue openedvimeo/VimeoUpload
Unable to find a specification for `VimeoUpload`
Issue Summary
Trying to install the "VimeoUpload" using cocoapods, but I get the error Unable to find a specification for VimeoUpload
Reproduction Steps
I created a fresh new XCode project, use the command pod init, then added the line
pod "VimeoUpload"
to the in the PodFile, run pod install, but get the error: Unable to find a specification for VimeoUpload
I have run both:
pod repo update
and
pod install --repo-update
but it did not resolve the issue.
See below copy of command and results as in the macOS Terminal
Expected Behavior
I expect the VimeoUpload pod to be install/added
Actual Behavior
What currently happens as a result of the reproduction steps?
tgs@HOTH vimeo upload % cat Podfile
Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'vimeo upload' do
Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
Pods for vimeo upload
pod "VimeoUpload"
target 'vimeo uploadTests' do inherit! :search_paths # Pods for testing end
target 'vimeo uploadUITests' do # Pods for testing end
end
tgs@HOTH vimeo upload % pod install
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
. - mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % pod repo update
Updating spec repo trunk
tgs@HOTH vimeo upload % pod install
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
. - mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % pod install --repo-update
Updating local specs repositories
Analyzing dependencies
[!] Unable to find a specification for VimeoUpload
You have either:
- mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
tgs@HOTH vimeo upload % ll Pods total 0 drwxr-xr-x 5 tgs staff 160 17 Dec 13:18 . drwxr-xr-x 8 tgs staff 256 17 Dec 13:19 .. drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Headers drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Local Podspecs drwxr-xr-x 2 tgs staff 64 17 Dec 13:18 Target Support Files tgs@HOTH vimeo upload %
created time in a month
startedmicrosoft/playwright-cli
started time in a month
issue closedvimeo/VimeoNetworking
I want to play vimeo video. Using VimeoNetworking to get a video file URL. I am getting success callback but files are nil. Can you please help me with how can I fetch video file URL to play within the application?
My code to fetch videos(video id:209096387 ):
closed time in a month
hiteshborse12issue commentvimeo/VimeoNetworking
Fixed. Created new personal access token.
comment created time in a month
issue commentvimeo/VimeoNetworking
Hi @rpassis, I upgrade Vimeo account. Still, video files coming nil. Details: account: live_premium scopes: [.Public,.Interact,.Private,.VideoFiles] Video id: 464183390
Please @rpassis help ASAP to get video files. Attached code and response file. vimeoResponse.txt code.txt
comment created time in a month
startedgoogleapis/nodejs-asset
started time in 2 months