Skip to content

Latest commit

 

History

History
199 lines (146 loc) · 5.8 KB

README.md

File metadata and controls

199 lines (146 loc) · 5.8 KB

Yat Partner Integration Android Framework

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.

Requirements

  • Android OS 8.0+ (API level 26+)

Installation

https://jitpack.io/#yat-labs/yat-lib-android

  1. 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" }
      }
    }
  2. Add the dependency (check the latest version on the JitPack page) in your app build.gradle file

    dependencies {
        implementation 'com.github.tari-project:yat-lib-android:0.5.0'
    }

Usage

  1. 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>
  2. 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.
            */
        }
    
        // ...
    
    }
  3. 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,
            )
        }
    
        // ...
    
    }
  4. 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)
            }
        }
    
        // ...
    
    }
  5. 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,
                )
            }
        }
    
        // ...
    
    }

Looking up a Yat

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)
   }
}