2018-05-24 01:37:31 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-03-12 16:35:45 +00:00
|
|
|
package="org.mozilla.firefoxsend">
|
2018-05-24 01:37:31 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2018-06-22 20:48:21 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2018-05-24 01:37:31 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2018-11-19 20:10:57 +00:00
|
|
|
android:label="@string/app_name"
|
2018-05-24 01:37:31 +00:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2018-08-15 19:29:29 +00:00
|
|
|
<meta-data android:name="android.webkit.WebView.EnableSafeBrowsing" android:value="false" />
|
2019-03-12 16:35:45 +00:00
|
|
|
<activity android:name="org.mozilla.firefoxsend.MainActivity" android:screenOrientation="portrait">
|
2018-05-24 01:37:31 +00:00
|
|
|
<intent-filter>
|
|
|
|
<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="image/*" />
|
|
|
|
</intent-filter>
|
|
|
|
<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>
|