Hello,
We are using "compile 'com.clover.cfp:clover-cfp-sdk:4.2.1'" SDK for implementation of Customer Facing Display in Station-Pro Device. We have the below configuration in the Gradle file.
android { compileSdkVersion 25 defaultConfig { applicationId "com.example.customerfacingexample" minSdkVersion 17 targetSdkVersion 25 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group == 'com.android.support') { if (!requested.name.startsWith("multidex")) { details.useVersion '25.4.0' } } } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:25.4.0' implementation 'com.android.support.constraint:constraint-layout:2.0.4' compile 'com.clover.cfp:clover-cfp-sdk:4.2.1'implementation 'com.clover.sdk:clover-android-sdk:latest.release' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }
But we are facing issue while build this project having SDK 'com.clover.cfp:clover-cfp-sdk:4.2.1" with version 4+ (4.0.1, 4.2.0, 4.2.1) , we need to work this SDK with targetVersion & compileSDK version 25.
We are facing the below issue, attached in image
Any Suggestion or help in this will be very much helpful to us.
Thanks