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'

In Flutter and React Native projects, the build.gradle file can be found inside the android/app folder.

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