Installation

We have decided to distribute our No-Codes SDK separately from the Qonversion SDK. However, the No-Codes SDK uses the Qonversion SDK as a dependency to give you an opportunity to make purchases and restore access directly from the screens within No-Codes.

No-Codes SDKVersion
iOS0.1.2 beta available
Android0.0.3 beta available
React Native9.0.0 and higher available
FlutterComing soon
CordovaComing soon
UnityComing soon
IonicComing soon

Install iOS SDK using CocoaPods

Add dependency to Podfile.

pod 'NoCodes'

Run pod install in the project directory to download the dependency.

pod install

Install iOS SDK via Swift Package Manager

Open Xcode, go to File → App packages... and enter the package URL https://github.com/qonversion/no-codes-ios to the search bar to import the package.

Install Android SDK

Add the dependency to your package level build.gradle file.

implementation 'io.qonversion:no-codes:0.+'
🚧

Migrating to the latest Qonversion SDK version

If you are utilizing our subscription management and analytics SDK (io.qonversion.android.sdk:sdk), please be aware that the No-Codes SDK includes the latest version of the Qonversion SDK. Therefore, you need to manage the migration from previous major versions to the latest ones. Our migration guides located in the relevant documentation section will assist you with this process.

After that you can remove the Qonversion SDK dependency from your build.gradle file and leave only the No-Codes SDK dependency there.

Install React Native SDK

ℹ️

No-Codes support for React Native ships as part of the Qonversion React Native SDK starting from version 9.0.0. You don't need to add any extra packages – just update to (or install) the latest react-native-qonversion release.

Install via npm or Yarn:

npm install react-native-qonversion --save
yarn add react-native-qonversion

After installation, make sure to install the iOS pods:

cd ios && pod install

That's it – you're ready to initialize and use No-Codes in your React Native project. Refer to the Displaying No-Codes guide for initialization and usage examples.