On This Page
REST API | Visa Platform Connect
Configuring the Module build.gradle File
build.gradle
FileFollow these steps to configure your module
build.gradle
file.- In the Android section, add these exclusion rules to your module'sbuild.gradlefile.
ADDITIONAL INFORMATION
android { ... packagingOptions { exclude 'META-INF/*' exclude 'LICENSE.txt' exclude 'asm-license.txt' } } - In order for the app to support Java 11 features, you must set the compatibility levels.
ADDITIONAL INFORMATION
android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } - The Tap to Phone Android Solution library publishes a release build type only. The debug build type is not available, so set thematchingFallbacksfield value torelease.
ADDITIONAL INFORMATION
android { ... buildTypes { ... debug { matchingFallbacks = ['release'] } } } - Add the required Default UI and Tap to Phone libraries to the Dependencies section of your module'sbuild.gradlefile.
ADDITIONAL INFORMATION
dependencies { ... // This is the Default UI dependency implementation 'io.payworks:paybutton-android:2.82.0' // This is the Tap to Phone dependency implementation 'io.payworks:mpos.android.taptophone:2.82.0' }