Supporting Android minSdkVersion 25 or lower

Nami's Android SDK supports minSdkVersion down to 22.

If you are targeting minSdkVersion from 22-25, you need to add these additional items to your app's build.gradle to enable the Nami SDK for Android to work.

android {
	compileOptions {
      // Flag to enable support for the new language APIs.
      // Required to support Android SDK minimum version 25 
	    coreLibraryDesugaringEnabled true
  }
  
  dependencies {
    coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5"
}