sharewithtitle/ShareWithTitle/src/main/AndroidManifest.xml
Michel Roux f2b5d64c43
Some checks failed
apk / build (push) Failing after 1m31s
Fix deprecation
2023-07-30 21:26:31 +02:00

18 lines
698 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@mipmap/ic_launcher"
android:label="Share with title"
android:theme="@android:style/Theme.NoDisplay">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
</application>
</manifest>