Varioqub SDK allows is a solution from Yandex for managing a digital Product and conducting A/B tests.
- Go to File > Add Package Dependency.
- Put the GitHub link of the Varioqub SDK: https://github.com/appmetrica/varioqub-sdk-ios.
- In Add to Target, select None for modules you don't want.
- Add the SDK to your project's dependencies:
dependencies: [
.package(url: "https://github.com/appmetrica/varioqub-sdk-ios", from: "1.0.0"),
],
- List the modules in your target's dependencies:
.target(
name: "YourTargetName",
dependencies: [
.product(name: "Varioqub", package: "varioqub-sdk-ios"),
]
)
- If you haven't set up CocoaPods, run
pod init
in your project directory. - In your Podfile, add Varioqub dependencies:
target 'YourAppName' do
pod 'Varioqub', '~> 1.0.0'
end
- Install the dependencies using
pod install
. - Open your project in Xcode with the
.xcworkspace
file.
You can find comprehensive integration details and instructions for installation, configuration, testing, and more in our full documentation.
Varioqub SDK is released under the MIT License. License agreement is available at LICENSE.