Metricell
Requirements
Monedata SDK 1.8.8 or higher
Adapter integration
The adapter can be integrated by adding the following dependency in the build.gradle file of your app:
implementation 'io.monedata:adapter-metricell:4.6.2.0'The adapter can be integrated by adding the following dependency in the build.gradle.kts file of your app:
implementation("io.monedata:adapter-metricell:4.6.2.0")Troubleshooting
"2 files found with path 'META-INF/ASL2.0' from inputs"
This issue can be solved by adding the following lines in the app's build.gradle file, inside the android block:
...
android {
....
packagingOptions {
exclude 'META-INF/ASL2.0'
}
}Last updated