mim OE (mim Operating Environment), mim-OE-SE-iOS Standard Edition for Apple iOS.
- Explore developer resources & documentation
- Sign up and create a mimik developer console account
- Follow the Integrating the mimik Client Library into iOS project guide.
- Learn the basics of Working with mimOE in an iOS project.
To get started, simply add a configuration such as this to your Podfile
:
platform :ios, '16.0'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/mimikgit/cocoapod-edge-specs.git'
use_frameworks!
inhibit_all_warnings!
def mimik
pod 'EdgeCore'
pod 'mim-OE-ai-SE-iOS-developer'
end
target '{target}' do
mimik()
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['VALID_ARCHS'] = '$(ARCHS_STANDARD_64_BIT)'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
EdgeCore/EdgeClient
API reference documentation can be found here.
EdgeEngineClient
platform protocol API reference documentation is here.
EdgeService
API references are available here.
After installation, try the following tutorials: