I am using two different plugins into cordova, which both have the same uses-feature
, one with android:required=\"false\"
and one without.
This is how it finally worked for us in our Ionic 3
project. You should remove one of the duplicate entries from platforms/android/AndroidManifest.xml
:
...
...
And also from platforms/android/android.json
:
{
"xml": " ",
"count": 1
},
...
{
"xml": " ",
"count": 1
}
PS: We do this tweak only when adding the Android platform, not at every build.