sharewithtitle/ShareWithTitle/src/main/AndroidManifest.xml

21 lines
743 B
XML
Raw Normal View History

2013-07-20 20:07:19 +00:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2023-07-30 19:04:42 +00:00
package="net.crystalyx.sharewithtitle">
2013-07-20 20:07:19 +00:00
2023-07-30 19:04:42 +00:00
<uses-permission android:name="android.permission.INTERNET" />
2013-07-20 20:07:19 +00:00
<application
2023-07-30 19:04:42 +00:00
android:icon="@mipmap/ic_launcher"
android:label="Share with title"
android:theme="@android:style/Theme.NoDisplay">
2013-07-20 20:07:19 +00:00
<activity
2023-07-30 19:04:42 +00:00
android:name=".MainActivity"
android:exported="true">
2013-07-20 20:07:19 +00:00
<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>