AndroidManifest.xml 555 B

12345678910111213141516
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.atmob.system_share">
  3. <application>
  4. <provider
  5. android:name="androidx.core.content.FileProvider"
  6. android:authorities="${applicationId}.fileprovider"
  7. android:exported="false"
  8. android:grantUriPermissions="true">
  9. <meta-data
  10. android:name="android.support.FILE_PROVIDER_PATHS"
  11. android:resource="@xml/atmob_filepath" />
  12. </provider>
  13. </application>
  14. </manifest>