Mercuryo is a Multicurrency Crypto Wallet allowing users to buy, sell, store and pay with cryptocurrency whenever they want. Besides client-facing web and mobile apps or widgets Mercuryo provides the platform for developers to create their own services on top of our API. This SDK is created to ease the process of integration of top-notch crypto experince to your mobile applications.
SDK is written on Koltin Multiplatform with goal to provide same shared code to both iOS and Android libraries. Despite not being a ubiquitous approach this allows us to enable all features on all platforms simultaneously. From iOS or Android developer’s standpoint integration looks similar to how you usually do it: add pod from CocoaPods for iOS or dependency in Gradle followed by calling methods as described below.
- Android 5.0+
- iOS 13.0+
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://dl.bintray.com/andrey-timofeev/mercuryo/' }
}
}
Add dependency:
dependencies {
implementation 'com.github.adaptyteam:AdaptySDK-Android:0.3.1'
}
Add the Mercuryo-SDK pod into your Podfile and run pod install.
target :YourTargetName do
pod 'Mercuryo-SDK'
end
- Download archive and extract the zip.
- Drag
MercuryoSDK.xcframework
into your project.