Skip to content

Conversation

@goodhyun
Copy link
Contributor

Android lets you select any text outside of your app and call from that context.
https://medium.com/androiddevelopers/custom-text-selection-actions-with-action-process-text-191f792d2999

You can do that by modifying AndroidManifest.xml

<intent-filter>
          <action android:name="android.intent.action.PROCESS_TEXT" />
          <category android:name="android.intent.category.DEFAULT" />
          <data android:mimeType="text/plain" />
        </intent-filter>

and the endpoint of ShareMenuModule.java

Android lets you select any text outside of your app and call from that context. 
https://medium.com/androiddevelopers/custom-text-selection-actions-with-action-process-text-191f792d2999 

You can do that by modifying `AndroidManifest.xml`
```
<intent-filter>
          <action android:name="android.intent.action.PROCESS_TEXT" />
          <category android:name="android.intent.category.DEFAULT" />
          <data android:mimeType="text/plain" />
        </intent-filter>
```
and the endpoint of ShareMenuModule.java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant