refs #5332 app obtener imagen

This commit is contained in:
Sergio De la torre 2023-06-06 08:54:13 +02:00
parent f13e6e14da
commit f48f112773
1 changed files with 14 additions and 0 deletions

View File

@ -49,7 +49,21 @@
<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>
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>