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.
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
Post a Comment