|
|
|
@ -39,11 +39,16 @@
|
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
|
android:theme="@style/Theme.Transparent">
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
|
android:resource="@xml/shortcuts" />
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
@ -57,6 +62,7 @@
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:parentActivityName=".ActivityMain">
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.PROCESS_TEXT" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
@ -69,6 +75,7 @@
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:launchMode="standard"
|
|
|
|
|
android:parentActivityName=".ActivityView">
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
@ -76,11 +83,13 @@
|
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
|
|
|
|
<data android:scheme="mailto" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<data android:scheme="mailto" />
|
|
|
|
@ -102,6 +111,7 @@
|
|
|
|
|
android:authorities="${applicationId}"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/fileprovider_paths" />
|
|
|
|
@ -110,9 +120,11 @@
|
|
|
|
|
<receiver
|
|
|
|
|
android:name=".Widget"
|
|
|
|
|
android:label="@string/app_name">
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/widget" />
|
|
|
|
@ -122,6 +134,7 @@
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|