Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.47 KB

File metadata and controls

57 lines (39 loc) · 1.47 KB

Varioqub UI SDK allows is a solution from Yandex for managing a digital Product and conducting A/B tests.

Installation

Swift Package Manager

Through Xcode:

  1. Go to File > Add Package Dependency.
  2. Put the GitHub link of the Varioqub UI SDK: https://github.com/appmetrica/varioqub-sdk-ui-ios.
  3. In Add to Target, select None for modules you don't want.

Via Package.swift Manifest:

  1. Add the SDK to your project's dependencies:
dependencies: [
    .package(url: "https://github.com/appmetrica/varioqub-sdk-ui-ios", from: "1.0.0"),
],
  1. List the modules in your target's dependencies:
.target(
    name: "YourTargetName",
    dependencies: [
        .product(name: "VarioqubUI", package: "varioqub-sdk-ui-ios"),
    ]
)

CocoaPods

  1. If you haven't set up CocoaPods, run pod init in your project directory.
  2. In your Podfile, add Varioqub UI dependencies:
target 'YourAppName' do
    pod 'VarioqubUI', '~> 1.0.0'
end
  1. Install the dependencies using pod install.
  2. Open your project in Xcode with the .xcworkspace file.

Documentation

You can find comprehensive integration details and instructions for installation, configuration, testing, and more in our full documentation.

License

Varioqub UI SDK is released under the MIT License. License agreement is available at LICENSE.