Skip to content
Snippets Groups Projects
Podfile 729 B
Newer Older
jakobsbode's avatar
jakobsbode committed
# Uncomment this line to define a global platform for your project
platform :ios, '9.3'

project '../enzevalos_iphone/enzevalos_iphone.xcodeproj'

inhibit_all_warnings!
use_frameworks!

def pods
	# VENTokenField is modified
	pod 'VENTokenField', '~> 2.0'
	pod 'mailcore2-ios', :git => 'https://github.com/MailCore/mailcore2.git', :branch => 'master'
	pod 'OpenSSL-Universal'
	pod 'BZipCompression'
Oliver Wiese's avatar
Oliver Wiese committed
kondeichmann's avatar
kondeichmann committed
	pod 'HockeySDK', '5.0.0'
jakobsbode's avatar
jakobsbode committed
target 'enzevalos_iphone' do

	pods

	target 'enzevalos_iphoneTests' do
		inherit! :search_paths
		# Pods for testing
	end

	target 'enzevalos_iphoneUITests' do
		inherit! :search_paths
		# Pods for testing
	end
end

target 'enzevalos_iphone-AdHoc' do

	pods
jakobsbode's avatar
jakobsbode committed
end