Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
carsten-klaffke committed May 7, 2024
2 parents 0533a12 + 2dae526 commit f2fa753
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,25 @@ SendIntent.checkSendIntentReceived().then((result: any) => {
Configure a new activity in AndroidManifest.xml!

```xml
<!-- Your actual activity declaration -->
<activity
android:name="de.mindlib.sendIntent.SendIntentActivity"
android:name=".MainActivity"
...
...
...>
</activity>

<!-- Add new One Activity for handle Intent here -->
<activity
android:name="de.mindlib.sendIntent.SendIntentActivity" <!-- Do not change this name, otherwise your application will crash -->
android:label="@string/app_name"
android:exported="true"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />

<!-- Depending on your project, you can add here the type of data you wish to receive -->
<data android:mimeType="text/plain" />
<data android:mimeType="image/*" />
<data android:mimeType="application/*" />
Expand Down Expand Up @@ -380,9 +391,9 @@ You should also exceute a call on app startup as described in [Usage](#usage), b

## Donation

If you want to support my work, you can donate me on Bitcoin or Stripe.
If you want to support my work, you can donate me via Lightning (Bitcoin) or Stripe.

bitcoin:bc1q60ntnlz4wqfup3yg3hyqmzfkuraf8clmvupqvs
Lightning: [email protected]

[Donate me a coffee on Stripe](https://buy.stripe.com/5kA9EH5SAe778VO146)

Expand Down

0 comments on commit f2fa753

Please sign in to comment.