Skip to content

Commit

Permalink
Merge pull request #1531 from ardriveapp/share-poc
Browse files Browse the repository at this point in the history
PE-5325: feat(sharing intent)
  • Loading branch information
thiagocarvalhodev authored Jan 30, 2024
2 parents 4314689 + 8532cb5 commit d8a7a1e
Show file tree
Hide file tree
Showing 32 changed files with 2,581 additions and 427 deletions.
12 changes: 11 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:launchMode="singleInstance"
android:theme="@style/LaunchTheme"
android:exported="true"
requestLegacyExternalStorage="true"
Expand Down Expand Up @@ -42,6 +42,16 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
Expand Down
Loading

0 comments on commit d8a7a1e

Please sign in to comment.