Follow these steps to configure your module
build.gradle
file:- In the Android section, add these exclusion rules to your module'sbuild.gradlefile.android { ... packaging { resources { excludes.add("META-INF/*") excludes.add("LICENSE.txt") excludes.add("asm-license.txt") } } }
- In order for the app to support Java 17 features, you must set the compatibility levels.android { ... compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } }
- The PAX All-in-One Android Solution library publishes a release build type only. The debug build type is not available, so set thematchingFallbacksfield value torelease.android { ... buildTypes { ... debug { matchingFallbacks.apply { clear() add("release") } } } }
- The repository contains the six latest SDK versions, which are updated continually. It is not possible to build a new version of your application using an outdated SDK version that has been removed from the repository. To ensure that you benefit from the latest features and enhancements, regularly update to the latest version of the SDK.Add the required Default UI and PAX libraries to the dependencies section of your module'sbuild.gradlefile.dependencies { ... // This is the Default UI dependency implementation("io.payworks:paybutton-android:2.100.0") // This is the PAX dependency implementation("io.payworks:mpos.android.accessories.pax:2.100.0") }