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

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -