You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see, I don't get the extra action as I want to
And also kind of related issue:
Is there a way to pass multiple MIME Types to the plugin on the installation?
The text was updated successfully, but these errors were encountered:
I'm trying to pass extra actions as specified in README.md
My OS is Win10
setting up the variable:
set MY_EXTRA_ACTIONS="<action android:name=android.intent.action.SEND_MULTIPLE />"
installing the plugin
cordova plugin add cc.fovea.cordova.openwith \ --variable ANDROID_MIME_TYPE="image/*" \ --variable IOS_URL_SCHEME=myscheme \ --variable IOS_UNIFORM_TYPE_IDENTIFIER=public.image \ --variable ANDROID_EXTRA_ACTIONS=%MY_EXTRA_ACTIONS%
"cc.fovea.cordova.openwith": { "ANDROID_MIME_TYPE": "image/*", "IOS_URL_SCHEME": "myscheme", "IOS_UNIFORM_TYPE_IDENTIFIER": "public.image", "ANDROID_EXTRA_ACTIONS": "<action android:name=android.intent.action.SEND_MULTIPLE />" }
<intent-filter> <data android:mimeType="image/*" /> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter>
As you can see, I don't get the extra action as I want to
And also kind of related issue:
Is there a way to pass multiple MIME Types to the plugin on the installation?
The text was updated successfully, but these errors were encountered: