mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-30 08:18:00 +01:00
defining more activity Exported values
This commit is contained in:
parent
75f8592940
commit
e262174e62
2 changed files with 15 additions and 12 deletions
|
@ -295,6 +295,7 @@
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name=".helpers.MyWidgetProvider"
|
android:name=".helpers.MyWidgetProvider"
|
||||||
|
android:exported="true"
|
||||||
android:icon="@drawable/img_widget_preview">
|
android:icon="@drawable/img_widget_preview">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="com.simplemobiletools.gallery.pro"
|
package="com.simplemobiletools.gallery.pro"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
@ -10,7 +9,8 @@
|
||||||
android:theme="@style/AppTheme">
|
android:theme="@style/AppTheme">
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.EditActivity">
|
android:name=".activities.EditActivity"
|
||||||
|
android:exported="true">
|
||||||
|
|
||||||
<intent-filter
|
<intent-filter
|
||||||
android:name="foss-editor"
|
android:name="foss-editor"
|
||||||
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.NewPhotoEditActivity"
|
android:name=".activities.NewPhotoEditActivity"
|
||||||
|
android:exported="true"
|
||||||
android:label="@string/editor">
|
android:label="@string/editor">
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
@ -39,6 +40,7 @@
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.NewVideoEditActivity"
|
android:name=".activities.NewVideoEditActivity"
|
||||||
|
android:exported="true"
|
||||||
android:label="@string/editor">
|
android:label="@string/editor">
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|
Loading…
Reference in a new issue