Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I am not able to see my Android application in Share menu list while sharing pdf from Adobe 18.3 version application but below versions of Adobe app, I am able to see my app in Share menu.

Do I need to change in my Android to make it work?any ideas?

Please help me resolve the issue

Thank you,

Babu


What I have tried:

I tried to cahnge the activity IntentFilter
[IntentFilter(new[] { Intent.ActionSend },
      Categories = new[] { "android.intent.category.DEFAULT" }, DataMimeType = "application/pdf")]


but I did not have luck so for
Posted
Updated 3-Oct-18 3:41am
Comments
David Crow 3-Oct-18 12:15pm    
If you are wanting your app to be one of the ones listed in the "Open With" box when a PDF file is clicked, you'll need to change its AndroidManifest.xml file, like:
<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <data android:mimeType="application/pdf" />
</intent-filter>
Korlakunta 4-Oct-18 4:10am    
Thank you, David,

I have already implemented the same thing(IntentFilter) in my activity class file instead of specifying in the AndroidManifest.xml
David Crow 4-Oct-18 9:24am    
My bad. I did not recognize the (Xamarin) syntax.
Korlakunta 4-Oct-18 9:56am    
no problem

1 solution

Looks like Adobe finally fixed the sharing issue. we can update latest Adobe from the play store, version 18.4.1, to resolve the error. 



Thank you,
Nagendra Babu.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900