This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>ssh.add</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/ssh-add</string> | |
<string>--apple-use-keychain</string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////// Index.tsx | |
import { FirebaseAppProvider } from 'reactfire'; | |
import FIREBASE_CONFIG from './firebase-config'; | |
ReactDOM.render( | |
<FirebaseAppProvider firebaseConfig={FIREBASE_CONFIG}> | |
<React.StrictMode> | |
<AppWithFirebase /> | |
</React.StrictMode> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'optparse' | |
require 'xcodeproj' | |
options = {} | |
OptionParser.new do |opts| | |
opts.banner = " This script fills \"Compile sources\" and add headers to the project section. \n | |
Usage: fill_sources_headers.rb [options]" | |
opts.on("-s [sources_path]", "--sources [sources_path]", "Path to the sources files (required)") do |sources_path| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "FFmpegBin" | |
s.version = "0.1.0" | |
s.summary = "The latest version of FFmpeg for iOS" | |
s.description = "FFmped libraries for iOS" | |
s.homepage = "https://ffmpeg.org" | |
s.license = 'MIT' | |
s.author = { "iOS" => "[email protected]" } | |
s.source = { :http => "https://downloads.sourceforge.net/project/ffmpeg-ios/ffmpeg-ios-master.tar.bz2" } | |
s.platform = :ios, '8.0' |