[Under Development] Integration Guide (Lite)
This guide describes the process of implementing AcquireIOSupport Lite SDK into your iOS app. We recommend using CocoaPods as the most advanced way of managing iOS project dependencies.
INSTALLATION
target :YourTargetName do
pod 'AcquireIOSupport-Lite’
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if [ 'Socket.IO-Client-Swift', 'Starscream'].include? target.name
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
end
NOTE: IF YOU ARE NEW TO COCOAPODS, GO TO COCOAPODS TO LEARN HOW TO INSTALL IT.

SETUP INFO.PLIST
Last updated