首页 > 代码库 > Podfile 文件的编写

Podfile 文件的编写

# Uncomment this line to define a global platform for your project
platform :ios, ‘9.0‘

target ‘CocoaPodsDemo‘ do
pod ‘RongCloudIMLib‘, ‘2.4.8’

# Uncomment this line if you‘re using Swift or would like to use dynamic frameworks
# use_frameworks!

# Pods for CocoaPodsDemo

target ‘CocoaPodsDemoTests‘ do
inherit! :search_paths
# Pods for testing
end

target ‘CocoaPodsDemoUITests‘ do
inherit! :search_paths
# Pods for testing
end

end

Podfile 文件的编写