android - Show own Cordova/PhoneGap App where user open any share dialog -


is there setting or plugin in cordova app list down in share dialog, facebook, twitter or flicker shown user when open share dialog or want share something.

see picture reference, want show app in dialog , when user clicks share, app should accept shared content.

enter image description here

add config.xml

  <gap:config-file platform="android" parent="/manifest/application" mode="add" > <activity android:name="urlscheme1" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.send" /> <category android:name="android.intent.category.default" /> <data android:mimetype="text/*" /> </intent-filter> </activity> </gap:config-file> 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -