This framework is designed to make it easy for Yat partners to integrate the Yat purchase or connect flows into their apps.
This repository contains an example app module named yat-lib-example
that illustrates the steps below. The YatAppConfig
instance in the MainActivity
of the sample app needs to be edited for the app to function correctly.
- Android OS 8.0+ (API level 26+)
https://jitpack.io/#yat-labs/yat-lib-android
-
Add the JitPack repository in your
settings.gradle
as the last item of repositories:dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { // your other repositories ... maven { url "https://jitpack.io" } } }
-
Add the dependency (check the latest version on the JitPack page) in your app
build.gradle
filedependencies { implementation 'com.github.tari-project:yat-lib-android:0.5.0' }
-
This library uses deep links to return from the Yat web application back to the partner application. URL scheme of the deep link is agreed upon in between the Yat development team and the integration partner. Currently used scheme is
{partner_key}://y.at?{query_params}
. Add deep link support to your activity using an intent filter.<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <!-- this example illustrates support for a deep link in the format myapp://y.at?{query_params} --> <data android:host="y.at" android:scheme="myapp" /> </intent-filter>
-
Implement the Yat library delegate in the class that will handle the Yat integration (e.g.
MainActivity
).class MainActivity : AppCompatActivity(), YatIntegration.Delegate { // ... override fun onYatIntegrationComplete(yat: String) { /* * Code to run when the integration has completed successfully. */ } override fun onYatIntegrationFailed(failureType: YatIntegration.FailureType) { /* * Code to run when the integration has failed. */ } // ... }
-
Initialize the Yat library.
class MainActivity : AppCompatActivity(), YatIntegration.Delegate { // ... private fun initializeYatLib() { // You can define your own environment(e.g. SandBox), or use the default Production one ("https://y.at/") val yourEnvironment = YatIntegration.Environment( yatAPIBaseURL = "https://a.yourdomain.y.at", yatWebAppBaseURL = "https://yourdomain.y.at", ) val yourConfig = YatConfiguration( appReturnLink = "app://y.at?action", // deep link to return to the app organizationName = "Yat Labs", organizationKey = "yat", ) YatIntegration.setup( context = this, config = yourConfig, colorMode = YatIntegration.ColorMode.LIGHT, // Choose between LIGHT and DARK delegate = this, environment = yourEnvironment, ) } // ... }
-
Add the code that handles deep links.
class MainActivity : AppCompatActivity(), YatIntegration.Delegate { // ... override fun onNewIntent(intent: Intent) { super.onNewIntent(intent) intent.data?.let { deepLink -> YatIntegration.processDeepLink(deepLink) } } // ... }
-
Start the library.
class MainActivity : AppCompatActivity(), YatIntegration.Delegate { // Your Yat records val yatRecords = listOf( YatRecord( YatRecordType.ADA_ADDRESS, "DdzFFzCqrhsgwQmeWNBTsG8VjYunBLK9GNR93GSLTGj1FeMm8kFoby2cTHxEHBEraHQXmgTtFGz7fThjDRNNvwzcaw6fQdkYySBneRas" ), YatRecord( YatRecordType.DOT_ADDRESS, "GC8fuEZG4E5epGf5KGXtcDfvrc6HXE7GJ5YnbiqSpqdQYLg" ), YatRecord( YatRecordType.BTC_ADDRESS, "1NDyJtNTjmwk5xPNhjgAMu4HDHigtobu1s" ), // ... ) // ... override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) // init your view ... initializeYatLib() ui.getYatButton.setOnClickListener { YatIntegration.showOnboarding( context = this@MainActivity, yatRecords = yatRecords, ) } } // ... }
Below is an example call to the YatLibApi.emojiIDApi.lookupEmojiIDPayment(query, tariTag)
function to query for the records linked to a Yat and print them.
import javax.swing.text.View
private fun lookupYat(yat: String) {
val tariTag = YatRecordType.XTM_ADDRESS.serializedName // for looking up XTM addresses only
val response = YatLibApi.emojiIDApi.lookupEmojiIDPayment(yat, tariTag)
if (response.status) {
val result = response.result
?.map { it.key + ": " + it.value.address }
?.joinToString("\n\n")
println(result)
} else {
println("Error:" + response.error?.reason)
}
}